Class ListPlatformApplicationsResult
- java.lang.Object
-
- com.amazonaws.services.sns.model.ListPlatformApplicationsResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class ListPlatformApplicationsResult extends Object implements Serializable, Cloneable
Response for ListPlatformApplications action.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListPlatformApplicationsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListPlatformApplicationsResultclone()booleanequals(Object obj)StringgetNextToken()NextToken string is returned when calling ListPlatformApplications action if additional records are available after the first page results.List<PlatformApplication>getPlatformApplications()Platform applications returned when calling ListPlatformApplications action.inthashCode()voidsetNextToken(String nextToken)NextToken string is returned when calling ListPlatformApplications action if additional records are available after the first page results.voidsetPlatformApplications(Collection<PlatformApplication> platformApplications)Platform applications returned when calling ListPlatformApplications action.StringtoString()Returns a string representation of this object; useful for testing and debugging.ListPlatformApplicationsResultwithNextToken(String nextToken)NextToken string is returned when calling ListPlatformApplications action if additional records are available after the first page results.ListPlatformApplicationsResultwithPlatformApplications(PlatformApplication... platformApplications)Platform applications returned when calling ListPlatformApplications action.ListPlatformApplicationsResultwithPlatformApplications(Collection<PlatformApplication> platformApplications)Platform applications returned when calling ListPlatformApplications action.
-
-
-
Method Detail
-
getPlatformApplications
public List<PlatformApplication> getPlatformApplications()
Platform applications returned when calling ListPlatformApplications action.
- Returns:
- Platform applications returned when calling ListPlatformApplications action.
-
setPlatformApplications
public void setPlatformApplications(Collection<PlatformApplication> platformApplications)
Platform applications returned when calling ListPlatformApplications action.
- Parameters:
platformApplications- Platform applications returned when calling ListPlatformApplications action.
-
withPlatformApplications
public ListPlatformApplicationsResult withPlatformApplications(PlatformApplication... platformApplications)
Platform applications returned when calling ListPlatformApplications action.
NOTE: This method appends the values to the existing list (if any). Use
setPlatformApplications(java.util.Collection)orwithPlatformApplications(java.util.Collection)if you want to override the existing values.- Parameters:
platformApplications- Platform applications returned when calling ListPlatformApplications action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withPlatformApplications
public ListPlatformApplicationsResult withPlatformApplications(Collection<PlatformApplication> platformApplications)
Platform applications returned when calling ListPlatformApplications action.
- Parameters:
platformApplications- Platform applications returned when calling ListPlatformApplications action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setNextToken
public void setNextToken(String nextToken)
NextToken string is returned when calling ListPlatformApplications action if additional records are available after the first page results.
- Parameters:
nextToken- NextToken string is returned when calling ListPlatformApplications action if additional records are available after the first page results.
-
getNextToken
public String getNextToken()
NextToken string is returned when calling ListPlatformApplications action if additional records are available after the first page results.
- Returns:
- NextToken string is returned when calling ListPlatformApplications action if additional records are available after the first page results.
-
withNextToken
public ListPlatformApplicationsResult withNextToken(String nextToken)
NextToken string is returned when calling ListPlatformApplications action if additional records are available after the first page results.
- Parameters:
nextToken- NextToken string is returned when calling ListPlatformApplications action if additional records are available after the first page results.- 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 ListPlatformApplicationsResult clone()
-
-