Class ListDomainNamesResult
- java.lang.Object
-
- com.amazonaws.services.cloudsearchv2.model.ListDomainNamesResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class ListDomainNamesResult extends Object implements Serializable, Cloneable
The result of a
ListDomainNamesrequest. Contains a list of the domains owned by an account.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListDomainNamesResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListDomainNamesResultaddDomainNamesEntry(String key, String value)ListDomainNamesResultclearDomainNamesEntries()Removes all the entries added into DomainNames.ListDomainNamesResultclone()booleanequals(Object obj)Map<String,String>getDomainNames()The names of the search domains owned by an account.inthashCode()voidsetDomainNames(Map<String,String> domainNames)The names of the search domains owned by an account.StringtoString()Returns a string representation of this object; useful for testing and debugging.ListDomainNamesResultwithDomainNames(Map<String,String> domainNames)The names of the search domains owned by an account.
-
-
-
Method Detail
-
getDomainNames
public Map<String,String> getDomainNames()
The names of the search domains owned by an account.
- Returns:
- The names of the search domains owned by an account.
-
setDomainNames
public void setDomainNames(Map<String,String> domainNames)
The names of the search domains owned by an account.
- Parameters:
domainNames- The names of the search domains owned by an account.
-
withDomainNames
public ListDomainNamesResult withDomainNames(Map<String,String> domainNames)
The names of the search domains owned by an account.
- Parameters:
domainNames- The names of the search domains owned by an account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
addDomainNamesEntry
public ListDomainNamesResult addDomainNamesEntry(String key, String value)
-
clearDomainNamesEntries
public ListDomainNamesResult clearDomainNamesEntries()
Removes all the entries added into DomainNames. <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 ListDomainNamesResult clone()
-
-