/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.signer.model; import java.io.Serializable; import javax.annotation.Generated; /** * * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class DescribeSigningJobResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable { /** *

* The ID of the signing job on output. *

*/ private String jobId; /** *

* The object that contains the name of your S3 bucket or your raw code. *

*/ private Source source; /** *

* The Amazon Resource Name (ARN) of your code signing certificate. *

*/ private SigningMaterial signingMaterial; /** *

* The microcontroller platform to which your signed code image will be distributed. *

*/ private String platformId; /** *

* A human-readable name for the signing platform associated with the signing job. *

*/ private String platformDisplayName; /** *

* The name of the profile that initiated the signing operation. *

*/ private String profileName; /** *

* The version of the signing profile used to initiate the signing job. *

*/ private String profileVersion; /** *

* A list of any overrides that were applied to the signing operation. *

*/ private SigningPlatformOverrides overrides; /** *

* Map of user-assigned key-value pairs used during signing. These values contain any information that you specified * for use in your signing job. *

*/ private java.util.Map signingParameters; /** *

* Date and time that the signing job was created. *

*/ private java.util.Date createdAt; /** *

* Date and time that the signing job was completed. *

*/ private java.util.Date completedAt; /** *

* Thr expiration timestamp for the signature generated by the signing job. *

*/ private java.util.Date signatureExpiresAt; /** *

* The IAM principal that requested the signing job. *

*/ private String requestedBy; /** *

* Status of the signing job. *

*/ private String status; /** *

* String value that contains the status reason. *

*/ private String statusReason; /** *

* A revocation record if the signature generated by the signing job has been revoked. Contains a timestamp and the * ID of the IAM entity that revoked the signature. *

*/ private SigningJobRevocationRecord revocationRecord; /** *

* Name of the S3 bucket where the signed code image is saved by code signing. *

*/ private SignedObject signedObject; /** *

* The AWS account ID of the job owner. *

*/ private String jobOwner; /** *

* The IAM entity that initiated the signing job. *

*/ private String jobInvoker; /** *

* The ID of the signing job on output. *

* * @param jobId * The ID of the signing job on output. */ public void setJobId(String jobId) { this.jobId = jobId; } /** *

* The ID of the signing job on output. *

* * @return The ID of the signing job on output. */ public String getJobId() { return this.jobId; } /** *

* The ID of the signing job on output. *

* * @param jobId * The ID of the signing job on output. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSigningJobResult withJobId(String jobId) { setJobId(jobId); return this; } /** *

* The object that contains the name of your S3 bucket or your raw code. *

* * @param source * The object that contains the name of your S3 bucket or your raw code. */ public void setSource(Source source) { this.source = source; } /** *

* The object that contains the name of your S3 bucket or your raw code. *

* * @return The object that contains the name of your S3 bucket or your raw code. */ public Source getSource() { return this.source; } /** *

* The object that contains the name of your S3 bucket or your raw code. *

* * @param source * The object that contains the name of your S3 bucket or your raw code. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSigningJobResult withSource(Source source) { setSource(source); return this; } /** *

* The Amazon Resource Name (ARN) of your code signing certificate. *

* * @param signingMaterial * The Amazon Resource Name (ARN) of your code signing certificate. */ public void setSigningMaterial(SigningMaterial signingMaterial) { this.signingMaterial = signingMaterial; } /** *

* The Amazon Resource Name (ARN) of your code signing certificate. *

* * @return The Amazon Resource Name (ARN) of your code signing certificate. */ public SigningMaterial getSigningMaterial() { return this.signingMaterial; } /** *

* The Amazon Resource Name (ARN) of your code signing certificate. *

* * @param signingMaterial * The Amazon Resource Name (ARN) of your code signing certificate. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSigningJobResult withSigningMaterial(SigningMaterial signingMaterial) { setSigningMaterial(signingMaterial); return this; } /** *

* The microcontroller platform to which your signed code image will be distributed. *

* * @param platformId * The microcontroller platform to which your signed code image will be distributed. */ public void setPlatformId(String platformId) { this.platformId = platformId; } /** *

* The microcontroller platform to which your signed code image will be distributed. *

* * @return The microcontroller platform to which your signed code image will be distributed. */ public String getPlatformId() { return this.platformId; } /** *

* The microcontroller platform to which your signed code image will be distributed. *

* * @param platformId * The microcontroller platform to which your signed code image will be distributed. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSigningJobResult withPlatformId(String platformId) { setPlatformId(platformId); return this; } /** *

* A human-readable name for the signing platform associated with the signing job. *

* * @param platformDisplayName * A human-readable name for the signing platform associated with the signing job. */ public void setPlatformDisplayName(String platformDisplayName) { this.platformDisplayName = platformDisplayName; } /** *

* A human-readable name for the signing platform associated with the signing job. *

* * @return A human-readable name for the signing platform associated with the signing job. */ public String getPlatformDisplayName() { return this.platformDisplayName; } /** *

* A human-readable name for the signing platform associated with the signing job. *

* * @param platformDisplayName * A human-readable name for the signing platform associated with the signing job. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSigningJobResult withPlatformDisplayName(String platformDisplayName) { setPlatformDisplayName(platformDisplayName); return this; } /** *

* The name of the profile that initiated the signing operation. *

* * @param profileName * The name of the profile that initiated the signing operation. */ public void setProfileName(String profileName) { this.profileName = profileName; } /** *

* The name of the profile that initiated the signing operation. *

* * @return The name of the profile that initiated the signing operation. */ public String getProfileName() { return this.profileName; } /** *

* The name of the profile that initiated the signing operation. *

* * @param profileName * The name of the profile that initiated the signing operation. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSigningJobResult withProfileName(String profileName) { setProfileName(profileName); return this; } /** *

* The version of the signing profile used to initiate the signing job. *

* * @param profileVersion * The version of the signing profile used to initiate the signing job. */ public void setProfileVersion(String profileVersion) { this.profileVersion = profileVersion; } /** *

* The version of the signing profile used to initiate the signing job. *

* * @return The version of the signing profile used to initiate the signing job. */ public String getProfileVersion() { return this.profileVersion; } /** *

* The version of the signing profile used to initiate the signing job. *

* * @param profileVersion * The version of the signing profile used to initiate the signing job. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSigningJobResult withProfileVersion(String profileVersion) { setProfileVersion(profileVersion); return this; } /** *

* A list of any overrides that were applied to the signing operation. *

* * @param overrides * A list of any overrides that were applied to the signing operation. */ public void setOverrides(SigningPlatformOverrides overrides) { this.overrides = overrides; } /** *

* A list of any overrides that were applied to the signing operation. *

* * @return A list of any overrides that were applied to the signing operation. */ public SigningPlatformOverrides getOverrides() { return this.overrides; } /** *

* A list of any overrides that were applied to the signing operation. *

* * @param overrides * A list of any overrides that were applied to the signing operation. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSigningJobResult withOverrides(SigningPlatformOverrides overrides) { setOverrides(overrides); return this; } /** *

* Map of user-assigned key-value pairs used during signing. These values contain any information that you specified * for use in your signing job. *

* * @return Map of user-assigned key-value pairs used during signing. These values contain any information that you * specified for use in your signing job. */ public java.util.Map getSigningParameters() { return signingParameters; } /** *

* Map of user-assigned key-value pairs used during signing. These values contain any information that you specified * for use in your signing job. *

* * @param signingParameters * Map of user-assigned key-value pairs used during signing. These values contain any information that you * specified for use in your signing job. */ public void setSigningParameters(java.util.Map signingParameters) { this.signingParameters = signingParameters; } /** *

* Map of user-assigned key-value pairs used during signing. These values contain any information that you specified * for use in your signing job. *

* * @param signingParameters * Map of user-assigned key-value pairs used during signing. These values contain any information that you * specified for use in your signing job. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSigningJobResult withSigningParameters(java.util.Map signingParameters) { setSigningParameters(signingParameters); return this; } /** * Add a single SigningParameters entry * * @see DescribeSigningJobResult#withSigningParameters * @returns a reference to this object so that method calls can be chained together. */ public DescribeSigningJobResult addSigningParametersEntry(String key, String value) { if (null == this.signingParameters) { this.signingParameters = new java.util.HashMap(); } if (this.signingParameters.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.signingParameters.put(key, value); return this; } /** * Removes all the entries added into SigningParameters. * * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSigningJobResult clearSigningParametersEntries() { this.signingParameters = null; return this; } /** *

* Date and time that the signing job was created. *

* * @param createdAt * Date and time that the signing job was created. */ public void setCreatedAt(java.util.Date createdAt) { this.createdAt = createdAt; } /** *

* Date and time that the signing job was created. *

* * @return Date and time that the signing job was created. */ public java.util.Date getCreatedAt() { return this.createdAt; } /** *

* Date and time that the signing job was created. *

* * @param createdAt * Date and time that the signing job was created. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSigningJobResult withCreatedAt(java.util.Date createdAt) { setCreatedAt(createdAt); return this; } /** *

* Date and time that the signing job was completed. *

* * @param completedAt * Date and time that the signing job was completed. */ public void setCompletedAt(java.util.Date completedAt) { this.completedAt = completedAt; } /** *

* Date and time that the signing job was completed. *

* * @return Date and time that the signing job was completed. */ public java.util.Date getCompletedAt() { return this.completedAt; } /** *

* Date and time that the signing job was completed. *

* * @param completedAt * Date and time that the signing job was completed. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSigningJobResult withCompletedAt(java.util.Date completedAt) { setCompletedAt(completedAt); return this; } /** *

* Thr expiration timestamp for the signature generated by the signing job. *

* * @param signatureExpiresAt * Thr expiration timestamp for the signature generated by the signing job. */ public void setSignatureExpiresAt(java.util.Date signatureExpiresAt) { this.signatureExpiresAt = signatureExpiresAt; } /** *

* Thr expiration timestamp for the signature generated by the signing job. *

* * @return Thr expiration timestamp for the signature generated by the signing job. */ public java.util.Date getSignatureExpiresAt() { return this.signatureExpiresAt; } /** *

* Thr expiration timestamp for the signature generated by the signing job. *

* * @param signatureExpiresAt * Thr expiration timestamp for the signature generated by the signing job. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSigningJobResult withSignatureExpiresAt(java.util.Date signatureExpiresAt) { setSignatureExpiresAt(signatureExpiresAt); return this; } /** *

* The IAM principal that requested the signing job. *

* * @param requestedBy * The IAM principal that requested the signing job. */ public void setRequestedBy(String requestedBy) { this.requestedBy = requestedBy; } /** *

* The IAM principal that requested the signing job. *

* * @return The IAM principal that requested the signing job. */ public String getRequestedBy() { return this.requestedBy; } /** *

* The IAM principal that requested the signing job. *

* * @param requestedBy * The IAM principal that requested the signing job. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSigningJobResult withRequestedBy(String requestedBy) { setRequestedBy(requestedBy); return this; } /** *

* Status of the signing job. *

* * @param status * Status of the signing job. * @see SigningStatus */ public void setStatus(String status) { this.status = status; } /** *

* Status of the signing job. *

* * @return Status of the signing job. * @see SigningStatus */ public String getStatus() { return this.status; } /** *

* Status of the signing job. *

* * @param status * Status of the signing job. * @return Returns a reference to this object so that method calls can be chained together. * @see SigningStatus */ public DescribeSigningJobResult withStatus(String status) { setStatus(status); return this; } /** *

* Status of the signing job. *

* * @param status * Status of the signing job. * @return Returns a reference to this object so that method calls can be chained together. * @see SigningStatus */ public DescribeSigningJobResult withStatus(SigningStatus status) { this.status = status.toString(); return this; } /** *

* String value that contains the status reason. *

* * @param statusReason * String value that contains the status reason. */ public void setStatusReason(String statusReason) { this.statusReason = statusReason; } /** *

* String value that contains the status reason. *

* * @return String value that contains the status reason. */ public String getStatusReason() { return this.statusReason; } /** *

* String value that contains the status reason. *

* * @param statusReason * String value that contains the status reason. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSigningJobResult withStatusReason(String statusReason) { setStatusReason(statusReason); return this; } /** *

* A revocation record if the signature generated by the signing job has been revoked. Contains a timestamp and the * ID of the IAM entity that revoked the signature. *

* * @param revocationRecord * A revocation record if the signature generated by the signing job has been revoked. Contains a timestamp * and the ID of the IAM entity that revoked the signature. */ public void setRevocationRecord(SigningJobRevocationRecord revocationRecord) { this.revocationRecord = revocationRecord; } /** *

* A revocation record if the signature generated by the signing job has been revoked. Contains a timestamp and the * ID of the IAM entity that revoked the signature. *

* * @return A revocation record if the signature generated by the signing job has been revoked. Contains a timestamp * and the ID of the IAM entity that revoked the signature. */ public SigningJobRevocationRecord getRevocationRecord() { return this.revocationRecord; } /** *

* A revocation record if the signature generated by the signing job has been revoked. Contains a timestamp and the * ID of the IAM entity that revoked the signature. *

* * @param revocationRecord * A revocation record if the signature generated by the signing job has been revoked. Contains a timestamp * and the ID of the IAM entity that revoked the signature. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSigningJobResult withRevocationRecord(SigningJobRevocationRecord revocationRecord) { setRevocationRecord(revocationRecord); return this; } /** *

* Name of the S3 bucket where the signed code image is saved by code signing. *

* * @param signedObject * Name of the S3 bucket where the signed code image is saved by code signing. */ public void setSignedObject(SignedObject signedObject) { this.signedObject = signedObject; } /** *

* Name of the S3 bucket where the signed code image is saved by code signing. *

* * @return Name of the S3 bucket where the signed code image is saved by code signing. */ public SignedObject getSignedObject() { return this.signedObject; } /** *

* Name of the S3 bucket where the signed code image is saved by code signing. *

* * @param signedObject * Name of the S3 bucket where the signed code image is saved by code signing. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSigningJobResult withSignedObject(SignedObject signedObject) { setSignedObject(signedObject); return this; } /** *

* The AWS account ID of the job owner. *

* * @param jobOwner * The AWS account ID of the job owner. */ public void setJobOwner(String jobOwner) { this.jobOwner = jobOwner; } /** *

* The AWS account ID of the job owner. *

* * @return The AWS account ID of the job owner. */ public String getJobOwner() { return this.jobOwner; } /** *

* The AWS account ID of the job owner. *

* * @param jobOwner * The AWS account ID of the job owner. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSigningJobResult withJobOwner(String jobOwner) { setJobOwner(jobOwner); return this; } /** *

* The IAM entity that initiated the signing job. *

* * @param jobInvoker * The IAM entity that initiated the signing job. */ public void setJobInvoker(String jobInvoker) { this.jobInvoker = jobInvoker; } /** *

* The IAM entity that initiated the signing job. *

* * @return The IAM entity that initiated the signing job. */ public String getJobInvoker() { return this.jobInvoker; } /** *

* The IAM entity that initiated the signing job. *

* * @param jobInvoker * The IAM entity that initiated the signing job. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeSigningJobResult withJobInvoker(String jobInvoker) { setJobInvoker(jobInvoker); 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 (getJobId() != null) sb.append("JobId: ").append(getJobId()).append(","); if (getSource() != null) sb.append("Source: ").append(getSource()).append(","); if (getSigningMaterial() != null) sb.append("SigningMaterial: ").append(getSigningMaterial()).append(","); if (getPlatformId() != null) sb.append("PlatformId: ").append(getPlatformId()).append(","); if (getPlatformDisplayName() != null) sb.append("PlatformDisplayName: ").append(getPlatformDisplayName()).append(","); if (getProfileName() != null) sb.append("ProfileName: ").append(getProfileName()).append(","); if (getProfileVersion() != null) sb.append("ProfileVersion: ").append(getProfileVersion()).append(","); if (getOverrides() != null) sb.append("Overrides: ").append(getOverrides()).append(","); if (getSigningParameters() != null) sb.append("SigningParameters: ").append(getSigningParameters()).append(","); if (getCreatedAt() != null) sb.append("CreatedAt: ").append(getCreatedAt()).append(","); if (getCompletedAt() != null) sb.append("CompletedAt: ").append(getCompletedAt()).append(","); if (getSignatureExpiresAt() != null) sb.append("SignatureExpiresAt: ").append(getSignatureExpiresAt()).append(","); if (getRequestedBy() != null) sb.append("RequestedBy: ").append(getRequestedBy()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getStatusReason() != null) sb.append("StatusReason: ").append(getStatusReason()).append(","); if (getRevocationRecord() != null) sb.append("RevocationRecord: ").append(getRevocationRecord()).append(","); if (getSignedObject() != null) sb.append("SignedObject: ").append(getSignedObject()).append(","); if (getJobOwner() != null) sb.append("JobOwner: ").append(getJobOwner()).append(","); if (getJobInvoker() != null) sb.append("JobInvoker: ").append(getJobInvoker()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DescribeSigningJobResult == false) return false; DescribeSigningJobResult other = (DescribeSigningJobResult) obj; if (other.getJobId() == null ^ this.getJobId() == null) return false; if (other.getJobId() != null && other.getJobId().equals(this.getJobId()) == false) return false; if (other.getSource() == null ^ this.getSource() == null) return false; if (other.getSource() != null && other.getSource().equals(this.getSource()) == false) return false; if (other.getSigningMaterial() == null ^ this.getSigningMaterial() == null) return false; if (other.getSigningMaterial() != null && other.getSigningMaterial().equals(this.getSigningMaterial()) == false) return false; if (other.getPlatformId() == null ^ this.getPlatformId() == null) return false; if (other.getPlatformId() != null && other.getPlatformId().equals(this.getPlatformId()) == false) return false; if (other.getPlatformDisplayName() == null ^ this.getPlatformDisplayName() == null) return false; if (other.getPlatformDisplayName() != null && other.getPlatformDisplayName().equals(this.getPlatformDisplayName()) == false) return false; if (other.getProfileName() == null ^ this.getProfileName() == null) return false; if (other.getProfileName() != null && other.getProfileName().equals(this.getProfileName()) == false) return false; if (other.getProfileVersion() == null ^ this.getProfileVersion() == null) return false; if (other.getProfileVersion() != null && other.getProfileVersion().equals(this.getProfileVersion()) == false) return false; if (other.getOverrides() == null ^ this.getOverrides() == null) return false; if (other.getOverrides() != null && other.getOverrides().equals(this.getOverrides()) == false) return false; if (other.getSigningParameters() == null ^ this.getSigningParameters() == null) return false; if (other.getSigningParameters() != null && other.getSigningParameters().equals(this.getSigningParameters()) == false) return false; if (other.getCreatedAt() == null ^ this.getCreatedAt() == null) return false; if (other.getCreatedAt() != null && other.getCreatedAt().equals(this.getCreatedAt()) == false) return false; if (other.getCompletedAt() == null ^ this.getCompletedAt() == null) return false; if (other.getCompletedAt() != null && other.getCompletedAt().equals(this.getCompletedAt()) == false) return false; if (other.getSignatureExpiresAt() == null ^ this.getSignatureExpiresAt() == null) return false; if (other.getSignatureExpiresAt() != null && other.getSignatureExpiresAt().equals(this.getSignatureExpiresAt()) == false) return false; if (other.getRequestedBy() == null ^ this.getRequestedBy() == null) return false; if (other.getRequestedBy() != null && other.getRequestedBy().equals(this.getRequestedBy()) == false) return false; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; if (other.getStatusReason() == null ^ this.getStatusReason() == null) return false; if (other.getStatusReason() != null && other.getStatusReason().equals(this.getStatusReason()) == false) return false; if (other.getRevocationRecord() == null ^ this.getRevocationRecord() == null) return false; if (other.getRevocationRecord() != null && other.getRevocationRecord().equals(this.getRevocationRecord()) == false) return false; if (other.getSignedObject() == null ^ this.getSignedObject() == null) return false; if (other.getSignedObject() != null && other.getSignedObject().equals(this.getSignedObject()) == false) return false; if (other.getJobOwner() == null ^ this.getJobOwner() == null) return false; if (other.getJobOwner() != null && other.getJobOwner().equals(this.getJobOwner()) == false) return false; if (other.getJobInvoker() == null ^ this.getJobInvoker() == null) return false; if (other.getJobInvoker() != null && other.getJobInvoker().equals(this.getJobInvoker()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getJobId() == null) ? 0 : getJobId().hashCode()); hashCode = prime * hashCode + ((getSource() == null) ? 0 : getSource().hashCode()); hashCode = prime * hashCode + ((getSigningMaterial() == null) ? 0 : getSigningMaterial().hashCode()); hashCode = prime * hashCode + ((getPlatformId() == null) ? 0 : getPlatformId().hashCode()); hashCode = prime * hashCode + ((getPlatformDisplayName() == null) ? 0 : getPlatformDisplayName().hashCode()); hashCode = prime * hashCode + ((getProfileName() == null) ? 0 : getProfileName().hashCode()); hashCode = prime * hashCode + ((getProfileVersion() == null) ? 0 : getProfileVersion().hashCode()); hashCode = prime * hashCode + ((getOverrides() == null) ? 0 : getOverrides().hashCode()); hashCode = prime * hashCode + ((getSigningParameters() == null) ? 0 : getSigningParameters().hashCode()); hashCode = prime * hashCode + ((getCreatedAt() == null) ? 0 : getCreatedAt().hashCode()); hashCode = prime * hashCode + ((getCompletedAt() == null) ? 0 : getCompletedAt().hashCode()); hashCode = prime * hashCode + ((getSignatureExpiresAt() == null) ? 0 : getSignatureExpiresAt().hashCode()); hashCode = prime * hashCode + ((getRequestedBy() == null) ? 0 : getRequestedBy().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getStatusReason() == null) ? 0 : getStatusReason().hashCode()); hashCode = prime * hashCode + ((getRevocationRecord() == null) ? 0 : getRevocationRecord().hashCode()); hashCode = prime * hashCode + ((getSignedObject() == null) ? 0 : getSignedObject().hashCode()); hashCode = prime * hashCode + ((getJobOwner() == null) ? 0 : getJobOwner().hashCode()); hashCode = prime * hashCode + ((getJobInvoker() == null) ? 0 : getJobInvoker().hashCode()); return hashCode; } @Override public DescribeSigningJobResult clone() { try { return (DescribeSigningJobResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }