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