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 PlatformApplication
addAttributesEntry(String key, String value)
PlatformApplication
clearAttributesEntries()
Removes all the entries added into Attributes.PlatformApplication
clone()
boolean
equals(Object obj)
Map<String,String>
getAttributes()
Attributes for platform application object.String
getPlatformApplicationArn()
PlatformApplicationArn for platform application object.int
hashCode()
void
setAttributes(Map<String,String> attributes)
Attributes for platform application object.void
setPlatformApplicationArn(String platformApplicationArn)
PlatformApplicationArn for platform application object.String
toString()
Returns a string representation of this object; useful for testing and debugging.PlatformApplication
withAttributes(Map<String,String> attributes)
Attributes for platform application object.PlatformApplication
withPlatformApplicationArn(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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public PlatformApplication clone()
-
-