com.amazonaws.services.cloudwatchevents.model.ListRuleNamesByTargetResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk-osgi Show documentation
/*
 * Copyright 2010-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.cloudwatchevents.model;
import java.io.Serializable;
/**
 * 
 * The result of the ListRuleNamesByTarget operation.
 * 
 */
public class ListRuleNamesByTargetResult implements Serializable, Cloneable {
    /**
     * 
     * List of rules names that can invoke the given target.
     * 
     */
    private java.util.List ruleNames;
    /**
     * 
     * Indicates that there are additional results to retrieve.
     * 
     */
    private String nextToken;
    /**
     * 
     * List of rules names that can invoke the given target.
     * 
     * 
     * @return List of rules names that can invoke the given target.
     */
    public java.util.List getRuleNames() {
        return ruleNames;
    }
    /**
     * 
     * List of rules names that can invoke the given target.
     * 
     * 
     * @param ruleNames
     *        List of rules names that can invoke the given target.
     */
    public void setRuleNames(java.util.Collection ruleNames) {
        if (ruleNames == null) {
            this.ruleNames = null;
            return;
        }
        this.ruleNames = new java.util.ArrayList(ruleNames);
    }
    /**
     * 
     * List of rules names that can invoke the given target.
     * 
     * 
     * NOTE: This method appends the values to the existing list (if
     * any). Use {@link #setRuleNames(java.util.Collection)} or
     * {@link #withRuleNames(java.util.Collection)} if you want to override the
     * existing values.
     * 
     * 
     * @param ruleNames
     *        List of rules names that can invoke the given target.
     * @return Returns a reference to this object so that method calls can be
     *         chained together.
     */
    public ListRuleNamesByTargetResult withRuleNames(String... ruleNames) {
        if (this.ruleNames == null) {
            setRuleNames(new java.util.ArrayList(ruleNames.length));
        }
        for (String ele : ruleNames) {
            this.ruleNames.add(ele);
        }
        return this;
    }
    /**
     * 
     * List of rules names that can invoke the given target.
     * 
     * 
     * @param ruleNames
     *        List of rules names that can invoke the given target.
     * @return Returns a reference to this object so that method calls can be
     *         chained together.
     */
    public ListRuleNamesByTargetResult withRuleNames(
            java.util.Collection ruleNames) {
        setRuleNames(ruleNames);
        return this;
    }
    /**
     * 
     * Indicates that there are additional results to retrieve.
     * 
     * 
     * @param nextToken
     *        Indicates that there are additional results to retrieve.
     */
    public void setNextToken(String nextToken) {
        this.nextToken = nextToken;
    }
    /**
     * 
     * Indicates that there are additional results to retrieve.
     * 
     * 
     * @return Indicates that there are additional results to retrieve.
     */
    public String getNextToken() {
        return this.nextToken;
    }
    /**
     * 
     * Indicates that there are additional results to retrieve.
     * 
     * 
     * @param nextToken
     *        Indicates that there are additional results to retrieve.
     * @return Returns a reference to this object so that method calls can be
     *         chained together.
     */
    public ListRuleNamesByTargetResult withNextToken(String nextToken) {
        setNextToken(nextToken);
        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 (getRuleNames() != null)
            sb.append("RuleNames: " + getRuleNames() + ",");
        if (getNextToken() != null)
            sb.append("NextToken: " + getNextToken());
        sb.append("}");
        return sb.toString();
    }
    @Override
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;
        if (obj instanceof ListRuleNamesByTargetResult == false)
            return false;
        ListRuleNamesByTargetResult other = (ListRuleNamesByTargetResult) obj;
        if (other.getRuleNames() == null ^ this.getRuleNames() == null)
            return false;
        if (other.getRuleNames() != null
                && other.getRuleNames().equals(this.getRuleNames()) == false)
            return false;
        if (other.getNextToken() == null ^ this.getNextToken() == null)
            return false;
        if (other.getNextToken() != null
                && other.getNextToken().equals(this.getNextToken()) == false)
            return false;
        return true;
    }
    @Override
    public int hashCode() {
        final int prime = 31;
        int hashCode = 1;
        hashCode = prime * hashCode
                + ((getRuleNames() == null) ? 0 : getRuleNames().hashCode());
        hashCode = prime * hashCode
                + ((getNextToken() == null) ? 0 : getNextToken().hashCode());
        return hashCode;
    }
    @Override
    public ListRuleNamesByTargetResult clone() {
        try {
            return (ListRuleNamesByTargetResult) super.clone();
        } catch (CloneNotSupportedException e) {
            throw new IllegalStateException(
                    "Got a CloneNotSupportedException from Object.clone() "
                            + "even though we're Cloneable!", e);
        }
    }
}