All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.auditmanager.model.AssessmentFramework Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Audit Manager module holds the client classes that are used for communicating with AWS Audit Manager Service

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2016-2021 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.auditmanager.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* The file used to structure and automate AWS Audit Manager assessments for a given compliance standard. *

* * @see AWS * API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class AssessmentFramework implements Serializable, Cloneable, StructuredPojo { /** *

* The unique identifier for the framework. *

*/ private String id; /** *

* The Amazon Resource Name (ARN) of the specified framework. *

*/ private String arn; private FrameworkMetadata metadata; /** *

* The control sets associated with the framework. *

*/ private java.util.List controlSets; /** *

* The unique identifier for the framework. *

* * @param id * The unique identifier for the framework. */ public void setId(String id) { this.id = id; } /** *

* The unique identifier for the framework. *

* * @return The unique identifier for the framework. */ public String getId() { return this.id; } /** *

* The unique identifier for the framework. *

* * @param id * The unique identifier for the framework. * @return Returns a reference to this object so that method calls can be chained together. */ public AssessmentFramework withId(String id) { setId(id); return this; } /** *

* The Amazon Resource Name (ARN) of the specified framework. *

* * @param arn * The Amazon Resource Name (ARN) of the specified framework. */ public void setArn(String arn) { this.arn = arn; } /** *

* The Amazon Resource Name (ARN) of the specified framework. *

* * @return The Amazon Resource Name (ARN) of the specified framework. */ public String getArn() { return this.arn; } /** *

* The Amazon Resource Name (ARN) of the specified framework. *

* * @param arn * The Amazon Resource Name (ARN) of the specified framework. * @return Returns a reference to this object so that method calls can be chained together. */ public AssessmentFramework withArn(String arn) { setArn(arn); return this; } /** * @param metadata */ public void setMetadata(FrameworkMetadata metadata) { this.metadata = metadata; } /** * @return */ public FrameworkMetadata getMetadata() { return this.metadata; } /** * @param metadata * @return Returns a reference to this object so that method calls can be chained together. */ public AssessmentFramework withMetadata(FrameworkMetadata metadata) { setMetadata(metadata); return this; } /** *

* The control sets associated with the framework. *

* * @return The control sets associated with the framework. */ public java.util.List getControlSets() { return controlSets; } /** *

* The control sets associated with the framework. *

* * @param controlSets * The control sets associated with the framework. */ public void setControlSets(java.util.Collection controlSets) { if (controlSets == null) { this.controlSets = null; return; } this.controlSets = new java.util.ArrayList(controlSets); } /** *

* The control sets associated with the framework. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setControlSets(java.util.Collection)} or {@link #withControlSets(java.util.Collection)} if you want to * override the existing values. *

* * @param controlSets * The control sets associated with the framework. * @return Returns a reference to this object so that method calls can be chained together. */ public AssessmentFramework withControlSets(AssessmentControlSet... controlSets) { if (this.controlSets == null) { setControlSets(new java.util.ArrayList(controlSets.length)); } for (AssessmentControlSet ele : controlSets) { this.controlSets.add(ele); } return this; } /** *

* The control sets associated with the framework. *

* * @param controlSets * The control sets associated with the framework. * @return Returns a reference to this object so that method calls can be chained together. */ public AssessmentFramework withControlSets(java.util.Collection controlSets) { setControlSets(controlSets); 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 (getId() != null) sb.append("Id: ").append(getId()).append(","); if (getArn() != null) sb.append("Arn: ").append(getArn()).append(","); if (getMetadata() != null) sb.append("Metadata: ").append(getMetadata()).append(","); if (getControlSets() != null) sb.append("ControlSets: ").append(getControlSets()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AssessmentFramework == false) return false; AssessmentFramework other = (AssessmentFramework) obj; if (other.getId() == null ^ this.getId() == null) return false; if (other.getId() != null && other.getId().equals(this.getId()) == false) return false; if (other.getArn() == null ^ this.getArn() == null) return false; if (other.getArn() != null && other.getArn().equals(this.getArn()) == false) return false; if (other.getMetadata() == null ^ this.getMetadata() == null) return false; if (other.getMetadata() != null && other.getMetadata().equals(this.getMetadata()) == false) return false; if (other.getControlSets() == null ^ this.getControlSets() == null) return false; if (other.getControlSets() != null && other.getControlSets().equals(this.getControlSets()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getId() == null) ? 0 : getId().hashCode()); hashCode = prime * hashCode + ((getArn() == null) ? 0 : getArn().hashCode()); hashCode = prime * hashCode + ((getMetadata() == null) ? 0 : getMetadata().hashCode()); hashCode = prime * hashCode + ((getControlSets() == null) ? 0 : getControlSets().hashCode()); return hashCode; } @Override public AssessmentFramework clone() { try { return (AssessmentFramework) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.auditmanager.model.transform.AssessmentFrameworkMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy