* The tunnel being described. *
*/ private Tunnel tunnel; /** ** The tunnel being described. *
* * @param tunnel * The tunnel being described. */ public void setTunnel(Tunnel tunnel) { this.tunnel = tunnel; } /** ** The tunnel being described. *
* * @return The tunnel being described. */ public Tunnel getTunnel() { return this.tunnel; } /** ** The tunnel being described. *
* * @param tunnel * The tunnel being described. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeTunnelResult withTunnel(Tunnel tunnel) { setTunnel(tunnel); 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 (getTunnel() != null) sb.append("Tunnel: ").append(getTunnel()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DescribeTunnelResult == false) return false; DescribeTunnelResult other = (DescribeTunnelResult) obj; if (other.getTunnel() == null ^ this.getTunnel() == null) return false; if (other.getTunnel() != null && other.getTunnel().equals(this.getTunnel()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getTunnel() == null) ? 0 : getTunnel().hashCode()); return hashCode; } @Override public DescribeTunnelResult clone() { try { return (DescribeTunnelResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }