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

com.amazonaws.services.inspector.model.AssessmentTemplate Maven / Gradle / Ivy

Go to download

The AWS SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

There is a newer version: 1.11.60
Show newest version
/*
 * Copyright 2011-2016 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.inspector.model;

import java.io.Serializable;

/**
 * 

* Contains information about an Amazon Inspector assessment template. This data * type is used as the response element in the * DescribeAssessmentTemplates action. *

*/ public class AssessmentTemplate implements Serializable, Cloneable { /** *

* The ARN of the assessment template. *

*/ private String arn; /** *

* The name of the assessment template. *

*/ private String name; /** *

* The ARN of the assessment target that corresponds to this assessment * template. *

*/ private String assessmentTargetArn; /** *

* The duration in seconds specified for this assessment tempate. The * default value is 3600 seconds (one hour). The maximum value is 86400 * seconds (one day). *

*/ private Integer durationInSeconds; /** *

* The rules packages that are specified for this assessment template. *

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

* The user-defined attributes that are assigned to every generated finding * from the assessment run that uses this assessment template. *

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

* The time at which the assessment template is created. *

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

* The ARN of the assessment template. *

* * @param arn * The ARN of the assessment template. */ public void setArn(String arn) { this.arn = arn; } /** *

* The ARN of the assessment template. *

* * @return The ARN of the assessment template. */ public String getArn() { return this.arn; } /** *

* The ARN of the assessment template. *

* * @param arn * The ARN of the assessment template. * @return Returns a reference to this object so that method calls can be * chained together. */ public AssessmentTemplate withArn(String arn) { setArn(arn); return this; } /** *

* The name of the assessment template. *

* * @param name * The name of the assessment template. */ public void setName(String name) { this.name = name; } /** *

* The name of the assessment template. *

* * @return The name of the assessment template. */ public String getName() { return this.name; } /** *

* The name of the assessment template. *

* * @param name * The name of the assessment template. * @return Returns a reference to this object so that method calls can be * chained together. */ public AssessmentTemplate withName(String name) { setName(name); return this; } /** *

* The ARN of the assessment target that corresponds to this assessment * template. *

* * @param assessmentTargetArn * The ARN of the assessment target that corresponds to this * assessment template. */ public void setAssessmentTargetArn(String assessmentTargetArn) { this.assessmentTargetArn = assessmentTargetArn; } /** *

* The ARN of the assessment target that corresponds to this assessment * template. *

* * @return The ARN of the assessment target that corresponds to this * assessment template. */ public String getAssessmentTargetArn() { return this.assessmentTargetArn; } /** *

* The ARN of the assessment target that corresponds to this assessment * template. *

* * @param assessmentTargetArn * The ARN of the assessment target that corresponds to this * assessment template. * @return Returns a reference to this object so that method calls can be * chained together. */ public AssessmentTemplate withAssessmentTargetArn(String assessmentTargetArn) { setAssessmentTargetArn(assessmentTargetArn); return this; } /** *

* The duration in seconds specified for this assessment tempate. The * default value is 3600 seconds (one hour). The maximum value is 86400 * seconds (one day). *

* * @param durationInSeconds * The duration in seconds specified for this assessment tempate. The * default value is 3600 seconds (one hour). The maximum value is * 86400 seconds (one day). */ public void setDurationInSeconds(Integer durationInSeconds) { this.durationInSeconds = durationInSeconds; } /** *

* The duration in seconds specified for this assessment tempate. The * default value is 3600 seconds (one hour). The maximum value is 86400 * seconds (one day). *

* * @return The duration in seconds specified for this assessment tempate. * The default value is 3600 seconds (one hour). The maximum value * is 86400 seconds (one day). */ public Integer getDurationInSeconds() { return this.durationInSeconds; } /** *

* The duration in seconds specified for this assessment tempate. The * default value is 3600 seconds (one hour). The maximum value is 86400 * seconds (one day). *

* * @param durationInSeconds * The duration in seconds specified for this assessment tempate. The * default value is 3600 seconds (one hour). The maximum value is * 86400 seconds (one day). * @return Returns a reference to this object so that method calls can be * chained together. */ public AssessmentTemplate withDurationInSeconds(Integer durationInSeconds) { setDurationInSeconds(durationInSeconds); return this; } /** *

* The rules packages that are specified for this assessment template. *

* * @return The rules packages that are specified for this assessment * template. */ public java.util.List getRulesPackageArns() { return rulesPackageArns; } /** *

* The rules packages that are specified for this assessment template. *

* * @param rulesPackageArns * The rules packages that are specified for this assessment * template. */ public void setRulesPackageArns( java.util.Collection rulesPackageArns) { if (rulesPackageArns == null) { this.rulesPackageArns = null; return; } this.rulesPackageArns = new java.util.ArrayList( rulesPackageArns); } /** *

* The rules packages that are specified for this assessment template. *

*

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

* * @param rulesPackageArns * The rules packages that are specified for this assessment * template. * @return Returns a reference to this object so that method calls can be * chained together. */ public AssessmentTemplate withRulesPackageArns(String... rulesPackageArns) { if (this.rulesPackageArns == null) { setRulesPackageArns(new java.util.ArrayList( rulesPackageArns.length)); } for (String ele : rulesPackageArns) { this.rulesPackageArns.add(ele); } return this; } /** *

* The rules packages that are specified for this assessment template. *

* * @param rulesPackageArns * The rules packages that are specified for this assessment * template. * @return Returns a reference to this object so that method calls can be * chained together. */ public AssessmentTemplate withRulesPackageArns( java.util.Collection rulesPackageArns) { setRulesPackageArns(rulesPackageArns); return this; } /** *

* The user-defined attributes that are assigned to every generated finding * from the assessment run that uses this assessment template. *

* * @return The user-defined attributes that are assigned to every generated * finding from the assessment run that uses this assessment * template. */ public java.util.List getUserAttributesForFindings() { return userAttributesForFindings; } /** *

* The user-defined attributes that are assigned to every generated finding * from the assessment run that uses this assessment template. *

* * @param userAttributesForFindings * The user-defined attributes that are assigned to every generated * finding from the assessment run that uses this assessment * template. */ public void setUserAttributesForFindings( java.util.Collection userAttributesForFindings) { if (userAttributesForFindings == null) { this.userAttributesForFindings = null; return; } this.userAttributesForFindings = new java.util.ArrayList( userAttributesForFindings); } /** *

* The user-defined attributes that are assigned to every generated finding * from the assessment run that uses this assessment template. *

*

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

* * @param userAttributesForFindings * The user-defined attributes that are assigned to every generated * finding from the assessment run that uses this assessment * template. * @return Returns a reference to this object so that method calls can be * chained together. */ public AssessmentTemplate withUserAttributesForFindings( Attribute... userAttributesForFindings) { if (this.userAttributesForFindings == null) { setUserAttributesForFindings(new java.util.ArrayList( userAttributesForFindings.length)); } for (Attribute ele : userAttributesForFindings) { this.userAttributesForFindings.add(ele); } return this; } /** *

* The user-defined attributes that are assigned to every generated finding * from the assessment run that uses this assessment template. *

* * @param userAttributesForFindings * The user-defined attributes that are assigned to every generated * finding from the assessment run that uses this assessment * template. * @return Returns a reference to this object so that method calls can be * chained together. */ public AssessmentTemplate withUserAttributesForFindings( java.util.Collection userAttributesForFindings) { setUserAttributesForFindings(userAttributesForFindings); return this; } /** *

* The time at which the assessment template is created. *

* * @param createdAt * The time at which the assessment template is created. */ public void setCreatedAt(java.util.Date createdAt) { this.createdAt = createdAt; } /** *

* The time at which the assessment template is created. *

* * @return The time at which the assessment template is created. */ public java.util.Date getCreatedAt() { return this.createdAt; } /** *

* The time at which the assessment template is created. *

* * @param createdAt * The time at which the assessment template is created. * @return Returns a reference to this object so that method calls can be * chained together. */ public AssessmentTemplate withCreatedAt(java.util.Date createdAt) { setCreatedAt(createdAt); return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getArn() != null) sb.append("Arn: " + getArn() + ","); if (getName() != null) sb.append("Name: " + getName() + ","); if (getAssessmentTargetArn() != null) sb.append("AssessmentTargetArn: " + getAssessmentTargetArn() + ","); if (getDurationInSeconds() != null) sb.append("DurationInSeconds: " + getDurationInSeconds() + ","); if (getRulesPackageArns() != null) sb.append("RulesPackageArns: " + getRulesPackageArns() + ","); if (getUserAttributesForFindings() != null) sb.append("UserAttributesForFindings: " + getUserAttributesForFindings() + ","); if (getCreatedAt() != null) sb.append("CreatedAt: " + getCreatedAt()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AssessmentTemplate == false) return false; AssessmentTemplate other = (AssessmentTemplate) obj; if (other.getArn() == null ^ this.getArn() == null) return false; if (other.getArn() != null && other.getArn().equals(this.getArn()) == false) return false; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getAssessmentTargetArn() == null ^ this.getAssessmentTargetArn() == null) return false; if (other.getAssessmentTargetArn() != null && other.getAssessmentTargetArn().equals( this.getAssessmentTargetArn()) == false) return false; if (other.getDurationInSeconds() == null ^ this.getDurationInSeconds() == null) return false; if (other.getDurationInSeconds() != null && other.getDurationInSeconds().equals( this.getDurationInSeconds()) == false) return false; if (other.getRulesPackageArns() == null ^ this.getRulesPackageArns() == null) return false; if (other.getRulesPackageArns() != null && other.getRulesPackageArns().equals( this.getRulesPackageArns()) == false) return false; if (other.getUserAttributesForFindings() == null ^ this.getUserAttributesForFindings() == null) return false; if (other.getUserAttributesForFindings() != null && other.getUserAttributesForFindings().equals( this.getUserAttributesForFindings()) == false) return false; if (other.getCreatedAt() == null ^ this.getCreatedAt() == null) return false; if (other.getCreatedAt() != null && other.getCreatedAt().equals(this.getCreatedAt()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getArn() == null) ? 0 : getArn().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getAssessmentTargetArn() == null) ? 0 : getAssessmentTargetArn().hashCode()); hashCode = prime * hashCode + ((getDurationInSeconds() == null) ? 0 : getDurationInSeconds().hashCode()); hashCode = prime * hashCode + ((getRulesPackageArns() == null) ? 0 : getRulesPackageArns() .hashCode()); hashCode = prime * hashCode + ((getUserAttributesForFindings() == null) ? 0 : getUserAttributesForFindings().hashCode()); hashCode = prime * hashCode + ((getCreatedAt() == null) ? 0 : getCreatedAt().hashCode()); return hashCode; } @Override public AssessmentTemplate clone() { try { return (AssessmentTemplate) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException( "Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy