* The time when the server was last modified. *
*/ private java.util.Date lastModifiedOn; /** ** The status of the server catalog. *
*/ private String serverCatalogStatus; /** ** Information about the servers. *
*/ private java.util.List* The token required to retrieve the next set of results. This value is null when there are no more results to * return. *
*/ private String nextToken; /** ** The time when the server was last modified. *
* * @param lastModifiedOn * The time when the server was last modified. */ public void setLastModifiedOn(java.util.Date lastModifiedOn) { this.lastModifiedOn = lastModifiedOn; } /** ** The time when the server was last modified. *
* * @return The time when the server was last modified. */ public java.util.Date getLastModifiedOn() { return this.lastModifiedOn; } /** ** The time when the server was last modified. *
* * @param lastModifiedOn * The time when the server was last modified. * @return Returns a reference to this object so that method calls can be chained together. */ public GetServersResult withLastModifiedOn(java.util.Date lastModifiedOn) { setLastModifiedOn(lastModifiedOn); return this; } /** ** The status of the server catalog. *
* * @param serverCatalogStatus * The status of the server catalog. * @see ServerCatalogStatus */ public void setServerCatalogStatus(String serverCatalogStatus) { this.serverCatalogStatus = serverCatalogStatus; } /** ** The status of the server catalog. *
* * @return The status of the server catalog. * @see ServerCatalogStatus */ public String getServerCatalogStatus() { return this.serverCatalogStatus; } /** ** The status of the server catalog. *
* * @param serverCatalogStatus * The status of the server catalog. * @return Returns a reference to this object so that method calls can be chained together. * @see ServerCatalogStatus */ public GetServersResult withServerCatalogStatus(String serverCatalogStatus) { setServerCatalogStatus(serverCatalogStatus); return this; } /** ** The status of the server catalog. *
* * @param serverCatalogStatus * The status of the server catalog. * @see ServerCatalogStatus */ public void setServerCatalogStatus(ServerCatalogStatus serverCatalogStatus) { withServerCatalogStatus(serverCatalogStatus); } /** ** The status of the server catalog. *
* * @param serverCatalogStatus * The status of the server catalog. * @return Returns a reference to this object so that method calls can be chained together. * @see ServerCatalogStatus */ public GetServersResult withServerCatalogStatus(ServerCatalogStatus serverCatalogStatus) { this.serverCatalogStatus = serverCatalogStatus.toString(); return this; } /** ** Information about the servers. *
* * @return Information about the servers. */ public java.util.List* Information about the servers. *
* * @param serverList * Information about the servers. */ public void setServerList(java.util.Collection* Information about the servers. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setServerList(java.util.Collection)} or {@link #withServerList(java.util.Collection)} if you want to * override the existing values. *
* * @param serverList * Information about the servers. * @return Returns a reference to this object so that method calls can be chained together. */ public GetServersResult withServerList(Server... serverList) { if (this.serverList == null) { setServerList(new java.util.ArrayList* Information about the servers. *
* * @param serverList * Information about the servers. * @return Returns a reference to this object so that method calls can be chained together. */ public GetServersResult withServerList(java.util.Collection* The token required to retrieve the next set of results. This value is null when there are no more results to * return. *
* * @param nextToken * The token required to retrieve the next set of results. This value is null when there are no more results * to return. */ public void setNextToken(String nextToken) { this.nextToken = nextToken; } /** ** The token required to retrieve the next set of results. This value is null when there are no more results to * return. *
* * @return The token required to retrieve the next set of results. This value is null when there are no more results * to return. */ public String getNextToken() { return this.nextToken; } /** ** The token required to retrieve the next set of results. This value is null when there are no more results to * return. *
* * @param nextToken * The token required to retrieve the next set of results. This value is null when there are no more results * to return. * @return Returns a reference to this object so that method calls can be chained together. */ public GetServersResult withNextToken(String nextToken) { setNextToken(nextToken); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getLastModifiedOn() != null) sb.append("LastModifiedOn: ").append(getLastModifiedOn()).append(","); if (getServerCatalogStatus() != null) sb.append("ServerCatalogStatus: ").append(getServerCatalogStatus()).append(","); if (getServerList() != null) sb.append("ServerList: ").append(getServerList()).append(","); if (getNextToken() != null) sb.append("NextToken: ").append(getNextToken()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetServersResult == false) return false; GetServersResult other = (GetServersResult) obj; if (other.getLastModifiedOn() == null ^ this.getLastModifiedOn() == null) return false; if (other.getLastModifiedOn() != null && other.getLastModifiedOn().equals(this.getLastModifiedOn()) == false) return false; if (other.getServerCatalogStatus() == null ^ this.getServerCatalogStatus() == null) return false; if (other.getServerCatalogStatus() != null && other.getServerCatalogStatus().equals(this.getServerCatalogStatus()) == false) return false; if (other.getServerList() == null ^ this.getServerList() == null) return false; if (other.getServerList() != null && other.getServerList().equals(this.getServerList()) == false) return false; if (other.getNextToken() == null ^ this.getNextToken() == null) return false; if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getLastModifiedOn() == null) ? 0 : getLastModifiedOn().hashCode()); hashCode = prime * hashCode + ((getServerCatalogStatus() == null) ? 0 : getServerCatalogStatus().hashCode()); hashCode = prime * hashCode + ((getServerList() == null) ? 0 : getServerList().hashCode()); hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode()); return hashCode; } @Override public GetServersResult clone() { try { return (GetServersResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }