Package com.amazonaws.services.sns.model
Class PlatformApplication
- java.lang.Object
-
- com.amazonaws.services.sns.model.PlatformApplication
-
- All Implemented Interfaces:
Serializable,Cloneable
public class PlatformApplication extends Object implements Serializable, Cloneable
Platform application object.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PlatformApplication()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PlatformApplicationaddAttributesEntry(String key, String value)PlatformApplicationclearAttributesEntries()Removes all the entries added into Attributes.PlatformApplicationclone()booleanequals(Object obj)Map<String,String>getAttributes()Attributes for platform application object.StringgetPlatformApplicationArn()PlatformApplicationArn for platform application object.inthashCode()voidsetAttributes(Map<String,String> attributes)Attributes for platform application object.voidsetPlatformApplicationArn(String platformApplicationArn)PlatformApplicationArn for platform application object.StringtoString()Returns a string representation of this object; useful for testing and debugging.PlatformApplicationwithAttributes(Map<String,String> attributes)Attributes for platform application object.PlatformApplicationwithPlatformApplicationArn(String platformApplicationArn)PlatformApplicationArn for platform application object.
-
-
-
Method Detail
-
setPlatformApplicationArn
public void setPlatformApplicationArn(String platformApplicationArn)
PlatformApplicationArn for platform application object.
- Parameters:
platformApplicationArn- PlatformApplicationArn for platform application object.
-
getPlatformApplicationArn
public String getPlatformApplicationArn()
PlatformApplicationArn for platform application object.
- Returns:
- PlatformApplicationArn for platform application object.
-
withPlatformApplicationArn
public PlatformApplication withPlatformApplicationArn(String platformApplicationArn)
PlatformApplicationArn for platform application object.
- Parameters:
platformApplicationArn- PlatformApplicationArn for platform application object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
getAttributes
public Map<String,String> getAttributes()
Attributes for platform application object.
- Returns:
- Attributes for platform application object.
-
setAttributes
public void setAttributes(Map<String,String> attributes)
Attributes for platform application object.
- Parameters:
attributes- Attributes for platform application object.
-
withAttributes
public PlatformApplication withAttributes(Map<String,String> attributes)
Attributes for platform application object.
- Parameters:
attributes- Attributes for platform application object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
addAttributesEntry
public PlatformApplication addAttributesEntry(String key, String value)
-
clearAttributesEntries
public PlatformApplication clearAttributesEntries()
Removes all the entries added into Attributes. <p> 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 PlatformApplication clone()
-
-