* The endpoint's service type. *
*/ private String serviceType; /** ** The service endpoint value. *
*/ private String serviceEndpoint; /** ** The Root CA of the server trust certificate. *
*/ private String serverTrust; /** ** The endpoint's service type. *
* * @param serviceType * The endpoint's service type. * @see WirelessGatewayServiceType */ public void setServiceType(String serviceType) { this.serviceType = serviceType; } /** ** The endpoint's service type. *
* * @return The endpoint's service type. * @see WirelessGatewayServiceType */ public String getServiceType() { return this.serviceType; } /** ** The endpoint's service type. *
* * @param serviceType * The endpoint's service type. * @return Returns a reference to this object so that method calls can be chained together. * @see WirelessGatewayServiceType */ public GetServiceEndpointResult withServiceType(String serviceType) { setServiceType(serviceType); return this; } /** ** The endpoint's service type. *
* * @param serviceType * The endpoint's service type. * @return Returns a reference to this object so that method calls can be chained together. * @see WirelessGatewayServiceType */ public GetServiceEndpointResult withServiceType(WirelessGatewayServiceType serviceType) { this.serviceType = serviceType.toString(); return this; } /** ** The service endpoint value. *
* * @param serviceEndpoint * The service endpoint value. */ public void setServiceEndpoint(String serviceEndpoint) { this.serviceEndpoint = serviceEndpoint; } /** ** The service endpoint value. *
* * @return The service endpoint value. */ public String getServiceEndpoint() { return this.serviceEndpoint; } /** ** The service endpoint value. *
* * @param serviceEndpoint * The service endpoint value. * @return Returns a reference to this object so that method calls can be chained together. */ public GetServiceEndpointResult withServiceEndpoint(String serviceEndpoint) { setServiceEndpoint(serviceEndpoint); return this; } /** ** The Root CA of the server trust certificate. *
* * @param serverTrust * The Root CA of the server trust certificate. */ public void setServerTrust(String serverTrust) { this.serverTrust = serverTrust; } /** ** The Root CA of the server trust certificate. *
* * @return The Root CA of the server trust certificate. */ public String getServerTrust() { return this.serverTrust; } /** ** The Root CA of the server trust certificate. *
* * @param serverTrust * The Root CA of the server trust certificate. * @return Returns a reference to this object so that method calls can be chained together. */ public GetServiceEndpointResult withServerTrust(String serverTrust) { setServerTrust(serverTrust); 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 (getServiceType() != null) sb.append("ServiceType: ").append(getServiceType()).append(","); if (getServiceEndpoint() != null) sb.append("ServiceEndpoint: ").append(getServiceEndpoint()).append(","); if (getServerTrust() != null) sb.append("ServerTrust: ").append(getServerTrust()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetServiceEndpointResult == false) return false; GetServiceEndpointResult other = (GetServiceEndpointResult) obj; if (other.getServiceType() == null ^ this.getServiceType() == null) return false; if (other.getServiceType() != null && other.getServiceType().equals(this.getServiceType()) == false) return false; if (other.getServiceEndpoint() == null ^ this.getServiceEndpoint() == null) return false; if (other.getServiceEndpoint() != null && other.getServiceEndpoint().equals(this.getServiceEndpoint()) == false) return false; if (other.getServerTrust() == null ^ this.getServerTrust() == null) return false; if (other.getServerTrust() != null && other.getServerTrust().equals(this.getServerTrust()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getServiceType() == null) ? 0 : getServiceType().hashCode()); hashCode = prime * hashCode + ((getServiceEndpoint() == null) ? 0 : getServiceEndpoint().hashCode()); hashCode = prime * hashCode + ((getServerTrust() == null) ? 0 : getServerTrust().hashCode()); return hashCode; } @Override public GetServiceEndpointResult clone() { try { return (GetServiceEndpointResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }