Class ListXssMatchSetsResult
- java.lang.Object
-
- com.amazonaws.services.waf.model.ListXssMatchSetsResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class ListXssMatchSetsResult extends Object implements Serializable, Cloneable
The response to a ListXssMatchSets request.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListXssMatchSetsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListXssMatchSetsResultclone()booleanequals(Object obj)StringgetNextMarker()If you have more XssMatchSet objects than the number that you specified forLimitin the request, the response includes aNextMarkervalue.List<XssMatchSetSummary>getXssMatchSets()An array of XssMatchSetSummary objects.inthashCode()voidsetNextMarker(String nextMarker)If you have more XssMatchSet objects than the number that you specified forLimitin the request, the response includes aNextMarkervalue.voidsetXssMatchSets(Collection<XssMatchSetSummary> xssMatchSets)An array of XssMatchSetSummary objects.StringtoString()Returns a string representation of this object; useful for testing and debugging.ListXssMatchSetsResultwithNextMarker(String nextMarker)If you have more XssMatchSet objects than the number that you specified forLimitin the request, the response includes aNextMarkervalue.ListXssMatchSetsResultwithXssMatchSets(XssMatchSetSummary... xssMatchSets)An array of XssMatchSetSummary objects.ListXssMatchSetsResultwithXssMatchSets(Collection<XssMatchSetSummary> xssMatchSets)An array of XssMatchSetSummary objects.
-
-
-
Method Detail
-
setNextMarker
public void setNextMarker(String nextMarker)
If you have more XssMatchSet objects than the number that you specified for
Limitin the request, the response includes aNextMarkervalue. To list moreXssMatchSetobjects, submit anotherListXssMatchSetsrequest, and specify theNextMarkervalue from the response in theNextMarkervalue in the next request.- Parameters:
nextMarker- If you have more XssMatchSet objects than the number that you specified forLimitin the request, the response includes aNextMarkervalue. To list moreXssMatchSetobjects, submit anotherListXssMatchSetsrequest, and specify theNextMarkervalue from the response in theNextMarkervalue in the next request.
-
getNextMarker
public String getNextMarker()
If you have more XssMatchSet objects than the number that you specified for
Limitin the request, the response includes aNextMarkervalue. To list moreXssMatchSetobjects, submit anotherListXssMatchSetsrequest, and specify theNextMarkervalue from the response in theNextMarkervalue in the next request.- Returns:
- If you have more XssMatchSet objects than the number that
you specified for
Limitin the request, the response includes aNextMarkervalue. To list moreXssMatchSetobjects, submit anotherListXssMatchSetsrequest, and specify theNextMarkervalue from the response in theNextMarkervalue in the next request.
-
withNextMarker
public ListXssMatchSetsResult withNextMarker(String nextMarker)
If you have more XssMatchSet objects than the number that you specified for
Limitin the request, the response includes aNextMarkervalue. To list moreXssMatchSetobjects, submit anotherListXssMatchSetsrequest, and specify theNextMarkervalue from the response in theNextMarkervalue in the next request.- Parameters:
nextMarker- If you have more XssMatchSet objects than the number that you specified forLimitin the request, the response includes aNextMarkervalue. To list moreXssMatchSetobjects, submit anotherListXssMatchSetsrequest, and specify theNextMarkervalue from the response in theNextMarkervalue in the next request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
getXssMatchSets
public List<XssMatchSetSummary> getXssMatchSets()
An array of XssMatchSetSummary objects.
- Returns:
- An array of XssMatchSetSummary objects.
-
setXssMatchSets
public void setXssMatchSets(Collection<XssMatchSetSummary> xssMatchSets)
An array of XssMatchSetSummary objects.
- Parameters:
xssMatchSets- An array of XssMatchSetSummary objects.
-
withXssMatchSets
public ListXssMatchSetsResult withXssMatchSets(XssMatchSetSummary... xssMatchSets)
An array of XssMatchSetSummary objects.
NOTE: This method appends the values to the existing list (if any). Use
setXssMatchSets(java.util.Collection)orwithXssMatchSets(java.util.Collection)if you want to override the existing values.- Parameters:
xssMatchSets- An array of XssMatchSetSummary objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withXssMatchSets
public ListXssMatchSetsResult withXssMatchSets(Collection<XssMatchSetSummary> xssMatchSets)
An array of XssMatchSetSummary objects.
- Parameters:
xssMatchSets- An array of XssMatchSetSummary objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ListXssMatchSetsResult clone()
-
-