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

com.amazonaws.services.mediaconvert.model.NielsenConfiguration Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.778
Show newest version
/*
 * Copyright 2013-2018 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.mediaconvert.model;

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

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

    /**
     * Use Nielsen Configuration (NielsenConfiguration) to set the Nielsen measurement system breakout code. Supported
     * values are 0, 3, 7, and 9.
     */
    private Integer breakoutCode;
    /**
     * Use Distributor ID (DistributorID) to specify the distributor ID that is assigned to your organization by
     * Neilsen.
     */
    private String distributorId;

    /**
     * Use Nielsen Configuration (NielsenConfiguration) to set the Nielsen measurement system breakout code. Supported
     * values are 0, 3, 7, and 9.
     * 
     * @param breakoutCode
     *        Use Nielsen Configuration (NielsenConfiguration) to set the Nielsen measurement system breakout code.
     *        Supported values are 0, 3, 7, and 9.
     */

    public void setBreakoutCode(Integer breakoutCode) {
        this.breakoutCode = breakoutCode;
    }

    /**
     * Use Nielsen Configuration (NielsenConfiguration) to set the Nielsen measurement system breakout code. Supported
     * values are 0, 3, 7, and 9.
     * 
     * @return Use Nielsen Configuration (NielsenConfiguration) to set the Nielsen measurement system breakout code.
     *         Supported values are 0, 3, 7, and 9.
     */

    public Integer getBreakoutCode() {
        return this.breakoutCode;
    }

    /**
     * Use Nielsen Configuration (NielsenConfiguration) to set the Nielsen measurement system breakout code. Supported
     * values are 0, 3, 7, and 9.
     * 
     * @param breakoutCode
     *        Use Nielsen Configuration (NielsenConfiguration) to set the Nielsen measurement system breakout code.
     *        Supported values are 0, 3, 7, and 9.
     * @return Returns a reference to this object so that method calls can be chained together.
     */

    public NielsenConfiguration withBreakoutCode(Integer breakoutCode) {
        setBreakoutCode(breakoutCode);
        return this;
    }

    /**
     * Use Distributor ID (DistributorID) to specify the distributor ID that is assigned to your organization by
     * Neilsen.
     * 
     * @param distributorId
     *        Use Distributor ID (DistributorID) to specify the distributor ID that is assigned to your organization by
     *        Neilsen.
     */

    public void setDistributorId(String distributorId) {
        this.distributorId = distributorId;
    }

    /**
     * Use Distributor ID (DistributorID) to specify the distributor ID that is assigned to your organization by
     * Neilsen.
     * 
     * @return Use Distributor ID (DistributorID) to specify the distributor ID that is assigned to your organization by
     *         Neilsen.
     */

    public String getDistributorId() {
        return this.distributorId;
    }

    /**
     * Use Distributor ID (DistributorID) to specify the distributor ID that is assigned to your organization by
     * Neilsen.
     * 
     * @param distributorId
     *        Use Distributor ID (DistributorID) to specify the distributor ID that is assigned to your organization by
     *        Neilsen.
     * @return Returns a reference to this object so that method calls can be chained together.
     */

    public NielsenConfiguration withDistributorId(String distributorId) {
        setDistributorId(distributorId);
        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 (getBreakoutCode() != null)
            sb.append("BreakoutCode: ").append(getBreakoutCode()).append(",");
        if (getDistributorId() != null)
            sb.append("DistributorId: ").append(getDistributorId());
        sb.append("}");
        return sb.toString();
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;

        if (obj instanceof NielsenConfiguration == false)
            return false;
        NielsenConfiguration other = (NielsenConfiguration) obj;
        if (other.getBreakoutCode() == null ^ this.getBreakoutCode() == null)
            return false;
        if (other.getBreakoutCode() != null && other.getBreakoutCode().equals(this.getBreakoutCode()) == false)
            return false;
        if (other.getDistributorId() == null ^ this.getDistributorId() == null)
            return false;
        if (other.getDistributorId() != null && other.getDistributorId().equals(this.getDistributorId()) == false)
            return false;
        return true;
    }

    @Override
    public int hashCode() {
        final int prime = 31;
        int hashCode = 1;

        hashCode = prime * hashCode + ((getBreakoutCode() == null) ? 0 : getBreakoutCode().hashCode());
        hashCode = prime * hashCode + ((getDistributorId() == null) ? 0 : getDistributorId().hashCode());
        return hashCode;
    }

    @Override
    public NielsenConfiguration clone() {
        try {
            return (NielsenConfiguration) 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.mediaconvert.model.transform.NielsenConfigurationMarshaller.getInstance().marshall(this, protocolMarshaller);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy