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

com.amazonaws.services.workdocs.model.DeleteLabelsRequest Maven / Gradle / Ivy

/*
 * Copyright 2012-2017 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.workdocs.model;

import java.io.Serializable;
import javax.annotation.Generated;

import com.amazonaws.AmazonWebServiceRequest;

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

    /**
     * 

* The ID of the resource. *

*/ private String resourceId; /** *

* Amazon WorkDocs authentication token. This field should not be set when using administrative API actions, as in * accessing the API using AWS credentials. *

*/ private String authenticationToken; /** *

* List of labels to delete from the resource. *

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

* Flag to request removal of all labels from the specified resource. *

*/ private Boolean deleteAll; /** *

* The ID of the resource. *

* * @param resourceId * The ID of the resource. */ public void setResourceId(String resourceId) { this.resourceId = resourceId; } /** *

* The ID of the resource. *

* * @return The ID of the resource. */ public String getResourceId() { return this.resourceId; } /** *

* The ID of the resource. *

* * @param resourceId * The ID of the resource. * @return Returns a reference to this object so that method calls can be chained together. */ public DeleteLabelsRequest withResourceId(String resourceId) { setResourceId(resourceId); return this; } /** *

* Amazon WorkDocs authentication token. This field should not be set when using administrative API actions, as in * accessing the API using AWS credentials. *

* * @param authenticationToken * Amazon WorkDocs authentication token. This field should not be set when using administrative API actions, * as in accessing the API using AWS credentials. */ public void setAuthenticationToken(String authenticationToken) { this.authenticationToken = authenticationToken; } /** *

* Amazon WorkDocs authentication token. This field should not be set when using administrative API actions, as in * accessing the API using AWS credentials. *

* * @return Amazon WorkDocs authentication token. This field should not be set when using administrative API actions, * as in accessing the API using AWS credentials. */ public String getAuthenticationToken() { return this.authenticationToken; } /** *

* Amazon WorkDocs authentication token. This field should not be set when using administrative API actions, as in * accessing the API using AWS credentials. *

* * @param authenticationToken * Amazon WorkDocs authentication token. This field should not be set when using administrative API actions, * as in accessing the API using AWS credentials. * @return Returns a reference to this object so that method calls can be chained together. */ public DeleteLabelsRequest withAuthenticationToken(String authenticationToken) { setAuthenticationToken(authenticationToken); return this; } /** *

* List of labels to delete from the resource. *

* * @return List of labels to delete from the resource. */ public java.util.List getLabels() { return labels; } /** *

* List of labels to delete from the resource. *

* * @param labels * List of labels to delete from the resource. */ public void setLabels(java.util.Collection labels) { if (labels == null) { this.labels = null; return; } this.labels = new java.util.ArrayList(labels); } /** *

* List of labels to delete from the resource. *

*

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

* * @param labels * List of labels to delete from the resource. * @return Returns a reference to this object so that method calls can be chained together. */ public DeleteLabelsRequest withLabels(String... labels) { if (this.labels == null) { setLabels(new java.util.ArrayList(labels.length)); } for (String ele : labels) { this.labels.add(ele); } return this; } /** *

* List of labels to delete from the resource. *

* * @param labels * List of labels to delete from the resource. * @return Returns a reference to this object so that method calls can be chained together. */ public DeleteLabelsRequest withLabels(java.util.Collection labels) { setLabels(labels); return this; } /** *

* Flag to request removal of all labels from the specified resource. *

* * @param deleteAll * Flag to request removal of all labels from the specified resource. */ public void setDeleteAll(Boolean deleteAll) { this.deleteAll = deleteAll; } /** *

* Flag to request removal of all labels from the specified resource. *

* * @return Flag to request removal of all labels from the specified resource. */ public Boolean getDeleteAll() { return this.deleteAll; } /** *

* Flag to request removal of all labels from the specified resource. *

* * @param deleteAll * Flag to request removal of all labels from the specified resource. * @return Returns a reference to this object so that method calls can be chained together. */ public DeleteLabelsRequest withDeleteAll(Boolean deleteAll) { setDeleteAll(deleteAll); return this; } /** *

* Flag to request removal of all labels from the specified resource. *

* * @return Flag to request removal of all labels from the specified resource. */ public Boolean isDeleteAll() { return this.deleteAll; } /** * 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 (getResourceId() != null) sb.append("ResourceId: ").append(getResourceId()).append(","); if (getAuthenticationToken() != null) sb.append("AuthenticationToken: ").append(getAuthenticationToken()).append(","); if (getLabels() != null) sb.append("Labels: ").append(getLabels()).append(","); if (getDeleteAll() != null) sb.append("DeleteAll: ").append(getDeleteAll()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DeleteLabelsRequest == false) return false; DeleteLabelsRequest other = (DeleteLabelsRequest) obj; if (other.getResourceId() == null ^ this.getResourceId() == null) return false; if (other.getResourceId() != null && other.getResourceId().equals(this.getResourceId()) == false) return false; if (other.getAuthenticationToken() == null ^ this.getAuthenticationToken() == null) return false; if (other.getAuthenticationToken() != null && other.getAuthenticationToken().equals(this.getAuthenticationToken()) == false) return false; if (other.getLabels() == null ^ this.getLabels() == null) return false; if (other.getLabels() != null && other.getLabels().equals(this.getLabels()) == false) return false; if (other.getDeleteAll() == null ^ this.getDeleteAll() == null) return false; if (other.getDeleteAll() != null && other.getDeleteAll().equals(this.getDeleteAll()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getResourceId() == null) ? 0 : getResourceId().hashCode()); hashCode = prime * hashCode + ((getAuthenticationToken() == null) ? 0 : getAuthenticationToken().hashCode()); hashCode = prime * hashCode + ((getLabels() == null) ? 0 : getLabels().hashCode()); hashCode = prime * hashCode + ((getDeleteAll() == null) ? 0 : getDeleteAll().hashCode()); return hashCode; } @Override public DeleteLabelsRequest clone() { return (DeleteLabelsRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy