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

com.amazonaws.services.simplesystemsmanagement.model.DocumentIdentifier Maven / Gradle / Ivy

/*
 * 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.simplesystemsmanagement.model;

import java.io.Serializable;

/**
 * 

* Describes the name of an SSM document. *

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

* The name of the SSM document. *

*/ private String name; /** *

* The AWS user account of the person who created the document. *

*/ private String owner; /** *

* The operating system platform. *

*/ private com.amazonaws.internal.SdkInternalList platformTypes; /** *

* The name of the SSM document. *

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

* The name of the SSM document. *

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

* The name of the SSM document. *

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

* The AWS user account of the person who created the document. *

* * @param owner * The AWS user account of the person who created the document. */ public void setOwner(String owner) { this.owner = owner; } /** *

* The AWS user account of the person who created the document. *

* * @return The AWS user account of the person who created the document. */ public String getOwner() { return this.owner; } /** *

* The AWS user account of the person who created the document. *

* * @param owner * The AWS user account of the person who created the document. * @return Returns a reference to this object so that method calls can be chained together. */ public DocumentIdentifier withOwner(String owner) { setOwner(owner); return this; } /** *

* The operating system platform. *

* * @return The operating system platform. * @see PlatformType */ public java.util.List getPlatformTypes() { if (platformTypes == null) { platformTypes = new com.amazonaws.internal.SdkInternalList(); } return platformTypes; } /** *

* The operating system platform. *

* * @param platformTypes * The operating system platform. * @see PlatformType */ public void setPlatformTypes(java.util.Collection platformTypes) { if (platformTypes == null) { this.platformTypes = null; return; } this.platformTypes = new com.amazonaws.internal.SdkInternalList(platformTypes); } /** *

* The operating system platform. *

*

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

* * @param platformTypes * The operating system platform. * @return Returns a reference to this object so that method calls can be chained together. * @see PlatformType */ public DocumentIdentifier withPlatformTypes(String... platformTypes) { if (this.platformTypes == null) { setPlatformTypes(new com.amazonaws.internal.SdkInternalList(platformTypes.length)); } for (String ele : platformTypes) { this.platformTypes.add(ele); } return this; } /** *

* The operating system platform. *

* * @param platformTypes * The operating system platform. * @return Returns a reference to this object so that method calls can be chained together. * @see PlatformType */ public DocumentIdentifier withPlatformTypes(java.util.Collection platformTypes) { setPlatformTypes(platformTypes); return this; } /** *

* The operating system platform. *

* * @param platformTypes * The operating system platform. * @return Returns a reference to this object so that method calls can be chained together. * @see PlatformType */ public DocumentIdentifier withPlatformTypes(PlatformType... platformTypes) { com.amazonaws.internal.SdkInternalList platformTypesCopy = new com.amazonaws.internal.SdkInternalList(platformTypes.length); for (PlatformType value : platformTypes) { platformTypesCopy.add(value.toString()); } if (getPlatformTypes() == null) { setPlatformTypes(platformTypesCopy); } else { getPlatformTypes().addAll(platformTypesCopy); } 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 (getName() != null) sb.append("Name: " + getName() + ","); if (getOwner() != null) sb.append("Owner: " + getOwner() + ","); if (getPlatformTypes() != null) sb.append("PlatformTypes: " + getPlatformTypes()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DocumentIdentifier == false) return false; DocumentIdentifier other = (DocumentIdentifier) obj; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getOwner() == null ^ this.getOwner() == null) return false; if (other.getOwner() != null && other.getOwner().equals(this.getOwner()) == false) return false; if (other.getPlatformTypes() == null ^ this.getPlatformTypes() == null) return false; if (other.getPlatformTypes() != null && other.getPlatformTypes().equals(this.getPlatformTypes()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getOwner() == null) ? 0 : getOwner().hashCode()); hashCode = prime * hashCode + ((getPlatformTypes() == null) ? 0 : getPlatformTypes().hashCode()); return hashCode; } @Override public DocumentIdentifier clone() { try { return (DocumentIdentifier) 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