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
ListDomainNames
request. 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 ListDomainNamesResult
addDomainNamesEntry(String key, String value)
ListDomainNamesResult
clearDomainNamesEntries()
Removes all the entries added into DomainNames.ListDomainNamesResult
clone()
boolean
equals(Object obj)
Map<String,String>
getDomainNames()
The names of the search domains owned by an account.int
hashCode()
void
setDomainNames(Map<String,String> domainNames)
The names of the search domains owned by an account.String
toString()
Returns a string representation of this object; useful for testing and debugging.ListDomainNamesResult
withDomainNames(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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ListDomainNamesResult clone()
-
-