Class ListLunaClientsResult
- java.lang.Object
-
- com.amazonaws.services.cloudhsm.model.ListLunaClientsResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class ListLunaClientsResult extends Object implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListLunaClientsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListLunaClientsResult
clone()
boolean
equals(Object obj)
List<String>
getClientList()
The list of clients.String
getNextToken()
If not null, more results are available.int
hashCode()
void
setClientList(Collection<String> clientList)
The list of clients.void
setNextToken(String nextToken)
If not null, more results are available.String
toString()
Returns a string representation of this object; useful for testing and debugging.ListLunaClientsResult
withClientList(String... clientList)
The list of clients.ListLunaClientsResult
withClientList(Collection<String> clientList)
The list of clients.ListLunaClientsResult
withNextToken(String nextToken)
If not null, more results are available.
-
-
-
Method Detail
-
getClientList
public List<String> getClientList()
The list of clients.
- Returns:
- The list of clients.
-
setClientList
public void setClientList(Collection<String> clientList)
The list of clients.
- Parameters:
clientList
- The list of clients.
-
withClientList
public ListLunaClientsResult withClientList(String... clientList)
The list of clients.
NOTE: This method appends the values to the existing list (if any). Use
setClientList(java.util.Collection)
orwithClientList(java.util.Collection)
if you want to override the existing values.- Parameters:
clientList
- The list of clients.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withClientList
public ListLunaClientsResult withClientList(Collection<String> clientList)
The list of clients.
- Parameters:
clientList
- The list of clients.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setNextToken
public void setNextToken(String nextToken)
If not null, more results are available. Pass this to ListLunaClients to retrieve the next set of items.
- Parameters:
nextToken
- If not null, more results are available. Pass this to ListLunaClients to retrieve the next set of items.
-
getNextToken
public String getNextToken()
If not null, more results are available. Pass this to ListLunaClients to retrieve the next set of items.
- Returns:
- If not null, more results are available. Pass this to ListLunaClients to retrieve the next set of items.
-
withNextToken
public ListLunaClientsResult withNextToken(String nextToken)
If not null, more results are available. Pass this to ListLunaClients to retrieve the next set of items.
- Parameters:
nextToken
- If not null, more results are available. Pass this to ListLunaClients to retrieve the next set of items.- 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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ListLunaClientsResult clone()
-
-