* The ID of the OpsItem. *
*/ private String opsItemId; /** ** The OpsItem Amazon Resource Name (ARN). *
*/ private String opsItemArn; /** ** The ID of the OpsItem. *
* * @param opsItemId * The ID of the OpsItem. */ public void setOpsItemId(String opsItemId) { this.opsItemId = opsItemId; } /** ** The ID of the OpsItem. *
* * @return The ID of the OpsItem. */ public String getOpsItemId() { return this.opsItemId; } /** ** The ID of the OpsItem. *
* * @param opsItemId * The ID of the OpsItem. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateOpsItemResult withOpsItemId(String opsItemId) { setOpsItemId(opsItemId); return this; } /** ** The OpsItem Amazon Resource Name (ARN). *
* * @param opsItemArn * The OpsItem Amazon Resource Name (ARN). */ public void setOpsItemArn(String opsItemArn) { this.opsItemArn = opsItemArn; } /** ** The OpsItem Amazon Resource Name (ARN). *
* * @return The OpsItem Amazon Resource Name (ARN). */ public String getOpsItemArn() { return this.opsItemArn; } /** ** The OpsItem Amazon Resource Name (ARN). *
* * @param opsItemArn * The OpsItem Amazon Resource Name (ARN). * @return Returns a reference to this object so that method calls can be chained together. */ public CreateOpsItemResult withOpsItemArn(String opsItemArn) { setOpsItemArn(opsItemArn); 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 (getOpsItemId() != null) sb.append("OpsItemId: ").append(getOpsItemId()).append(","); if (getOpsItemArn() != null) sb.append("OpsItemArn: ").append(getOpsItemArn()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateOpsItemResult == false) return false; CreateOpsItemResult other = (CreateOpsItemResult) obj; if (other.getOpsItemId() == null ^ this.getOpsItemId() == null) return false; if (other.getOpsItemId() != null && other.getOpsItemId().equals(this.getOpsItemId()) == false) return false; if (other.getOpsItemArn() == null ^ this.getOpsItemArn() == null) return false; if (other.getOpsItemArn() != null && other.getOpsItemArn().equals(this.getOpsItemArn()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getOpsItemId() == null) ? 0 : getOpsItemId().hashCode()); hashCode = prime * hashCode + ((getOpsItemArn() == null) ? 0 : getOpsItemArn().hashCode()); return hashCode; } @Override public CreateOpsItemResult clone() { try { return (CreateOpsItemResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }