* A GeneratedPolicyDetails
object that contains details about the generated policy.
*
* A GeneratedPolicyResult
object that contains the generated policies and associated details.
*
* A GeneratedPolicyDetails
object that contains details about the generated policy.
*
GeneratedPolicyDetails
object that contains details about the generated policy.
*/
public void setJobDetails(JobDetails jobDetails) {
this.jobDetails = jobDetails;
}
/**
*
* A GeneratedPolicyDetails
object that contains details about the generated policy.
*
GeneratedPolicyDetails
object that contains details about the generated policy.
*/
public JobDetails getJobDetails() {
return this.jobDetails;
}
/**
*
* A GeneratedPolicyDetails
object that contains details about the generated policy.
*
GeneratedPolicyDetails
object that contains details about the generated policy.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetGeneratedPolicyResult withJobDetails(JobDetails jobDetails) {
setJobDetails(jobDetails);
return this;
}
/**
*
* A GeneratedPolicyResult
object that contains the generated policies and associated details.
*
GeneratedPolicyResult
object that contains the generated policies and associated details.
*/
public void setGeneratedPolicyResult(GeneratedPolicyResult generatedPolicyResult) {
this.generatedPolicyResult = generatedPolicyResult;
}
/**
*
* A GeneratedPolicyResult
object that contains the generated policies and associated details.
*
GeneratedPolicyResult
object that contains the generated policies and associated details.
*/
public GeneratedPolicyResult getGeneratedPolicyResult() {
return this.generatedPolicyResult;
}
/**
*
* A GeneratedPolicyResult
object that contains the generated policies and associated details.
*
GeneratedPolicyResult
object that contains the generated policies and associated details.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetGeneratedPolicyResult withGeneratedPolicyResult(GeneratedPolicyResult generatedPolicyResult) {
setGeneratedPolicyResult(generatedPolicyResult);
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 (getJobDetails() != null)
sb.append("JobDetails: ").append(getJobDetails()).append(",");
if (getGeneratedPolicyResult() != null)
sb.append("GeneratedPolicyResult: ").append(getGeneratedPolicyResult());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof GetGeneratedPolicyResult == false)
return false;
GetGeneratedPolicyResult other = (GetGeneratedPolicyResult) obj;
if (other.getJobDetails() == null ^ this.getJobDetails() == null)
return false;
if (other.getJobDetails() != null && other.getJobDetails().equals(this.getJobDetails()) == false)
return false;
if (other.getGeneratedPolicyResult() == null ^ this.getGeneratedPolicyResult() == null)
return false;
if (other.getGeneratedPolicyResult() != null && other.getGeneratedPolicyResult().equals(this.getGeneratedPolicyResult()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getJobDetails() == null) ? 0 : getJobDetails().hashCode());
hashCode = prime * hashCode + ((getGeneratedPolicyResult() == null) ? 0 : getGeneratedPolicyResult().hashCode());
return hashCode;
}
@Override
public GetGeneratedPolicyResult clone() {
try {
return (GetGeneratedPolicyResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}