com.amazonaws.services.mediaconnect.model.Entitlement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-mediaconnect Show documentation
Show all versions of aws-java-sdk-mediaconnect Show documentation
The AWS Java SDK for AWS MediaConnect module holds the client classes that are used for communicating with AWS MediaConnect Service
/*
* Copyright 2018-2023 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.mediaconnect.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
* The settings for a flow entitlement.
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class Entitlement implements Serializable, Cloneable, StructuredPojo {
/** Percentage from 0-100 of the data transfer cost to be billed to the subscriber. */
private Integer dataTransferSubscriberFeePercent;
/** A description of the entitlement. */
private String description;
/** The type of encryption that will be used on the output that is associated with this entitlement. */
private Encryption encryption;
/** The ARN of the entitlement. */
private String entitlementArn;
/** An indication of whether the entitlement is enabled. */
private String entitlementStatus;
/** The name of the entitlement. */
private String name;
/**
* The AWS account IDs that you want to share your content with. The receiving accounts (subscribers) will be
* allowed to create their own flow using your content as the source.
*/
private java.util.List subscribers;
/**
* Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
*
* @param dataTransferSubscriberFeePercent
* Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
*/
public void setDataTransferSubscriberFeePercent(Integer dataTransferSubscriberFeePercent) {
this.dataTransferSubscriberFeePercent = dataTransferSubscriberFeePercent;
}
/**
* Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
*
* @return Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
*/
public Integer getDataTransferSubscriberFeePercent() {
return this.dataTransferSubscriberFeePercent;
}
/**
* Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
*
* @param dataTransferSubscriberFeePercent
* Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Entitlement withDataTransferSubscriberFeePercent(Integer dataTransferSubscriberFeePercent) {
setDataTransferSubscriberFeePercent(dataTransferSubscriberFeePercent);
return this;
}
/**
* A description of the entitlement.
*
* @param description
* A description of the entitlement.
*/
public void setDescription(String description) {
this.description = description;
}
/**
* A description of the entitlement.
*
* @return A description of the entitlement.
*/
public String getDescription() {
return this.description;
}
/**
* A description of the entitlement.
*
* @param description
* A description of the entitlement.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Entitlement withDescription(String description) {
setDescription(description);
return this;
}
/**
* The type of encryption that will be used on the output that is associated with this entitlement.
*
* @param encryption
* The type of encryption that will be used on the output that is associated with this entitlement.
*/
public void setEncryption(Encryption encryption) {
this.encryption = encryption;
}
/**
* The type of encryption that will be used on the output that is associated with this entitlement.
*
* @return The type of encryption that will be used on the output that is associated with this entitlement.
*/
public Encryption getEncryption() {
return this.encryption;
}
/**
* The type of encryption that will be used on the output that is associated with this entitlement.
*
* @param encryption
* The type of encryption that will be used on the output that is associated with this entitlement.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Entitlement withEncryption(Encryption encryption) {
setEncryption(encryption);
return this;
}
/**
* The ARN of the entitlement.
*
* @param entitlementArn
* The ARN of the entitlement.
*/
public void setEntitlementArn(String entitlementArn) {
this.entitlementArn = entitlementArn;
}
/**
* The ARN of the entitlement.
*
* @return The ARN of the entitlement.
*/
public String getEntitlementArn() {
return this.entitlementArn;
}
/**
* The ARN of the entitlement.
*
* @param entitlementArn
* The ARN of the entitlement.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Entitlement withEntitlementArn(String entitlementArn) {
setEntitlementArn(entitlementArn);
return this;
}
/**
* An indication of whether the entitlement is enabled.
*
* @param entitlementStatus
* An indication of whether the entitlement is enabled.
* @see EntitlementStatus
*/
public void setEntitlementStatus(String entitlementStatus) {
this.entitlementStatus = entitlementStatus;
}
/**
* An indication of whether the entitlement is enabled.
*
* @return An indication of whether the entitlement is enabled.
* @see EntitlementStatus
*/
public String getEntitlementStatus() {
return this.entitlementStatus;
}
/**
* An indication of whether the entitlement is enabled.
*
* @param entitlementStatus
* An indication of whether the entitlement is enabled.
* @return Returns a reference to this object so that method calls can be chained together.
* @see EntitlementStatus
*/
public Entitlement withEntitlementStatus(String entitlementStatus) {
setEntitlementStatus(entitlementStatus);
return this;
}
/**
* An indication of whether the entitlement is enabled.
*
* @param entitlementStatus
* An indication of whether the entitlement is enabled.
* @return Returns a reference to this object so that method calls can be chained together.
* @see EntitlementStatus
*/
public Entitlement withEntitlementStatus(EntitlementStatus entitlementStatus) {
this.entitlementStatus = entitlementStatus.toString();
return this;
}
/**
* The name of the entitlement.
*
* @param name
* The name of the entitlement.
*/
public void setName(String name) {
this.name = name;
}
/**
* The name of the entitlement.
*
* @return The name of the entitlement.
*/
public String getName() {
return this.name;
}
/**
* The name of the entitlement.
*
* @param name
* The name of the entitlement.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Entitlement withName(String name) {
setName(name);
return this;
}
/**
* The AWS account IDs that you want to share your content with. The receiving accounts (subscribers) will be
* allowed to create their own flow using your content as the source.
*
* @return The AWS account IDs that you want to share your content with. The receiving accounts (subscribers) will
* be allowed to create their own flow using your content as the source.
*/
public java.util.List getSubscribers() {
return subscribers;
}
/**
* The AWS account IDs that you want to share your content with. The receiving accounts (subscribers) will be
* allowed to create their own flow using your content as the source.
*
* @param subscribers
* The AWS account IDs that you want to share your content with. The receiving accounts (subscribers) will be
* allowed to create their own flow using your content as the source.
*/
public void setSubscribers(java.util.Collection subscribers) {
if (subscribers == null) {
this.subscribers = null;
return;
}
this.subscribers = new java.util.ArrayList(subscribers);
}
/**
* The AWS account IDs that you want to share your content with. The receiving accounts (subscribers) will be
* allowed to create their own flow using your content as the source.
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setSubscribers(java.util.Collection)} or {@link #withSubscribers(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param subscribers
* The AWS account IDs that you want to share your content with. The receiving accounts (subscribers) will be
* allowed to create their own flow using your content as the source.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Entitlement withSubscribers(String... subscribers) {
if (this.subscribers == null) {
setSubscribers(new java.util.ArrayList(subscribers.length));
}
for (String ele : subscribers) {
this.subscribers.add(ele);
}
return this;
}
/**
* The AWS account IDs that you want to share your content with. The receiving accounts (subscribers) will be
* allowed to create their own flow using your content as the source.
*
* @param subscribers
* The AWS account IDs that you want to share your content with. The receiving accounts (subscribers) will be
* allowed to create their own flow using your content as the source.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Entitlement withSubscribers(java.util.Collection subscribers) {
setSubscribers(subscribers);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getDataTransferSubscriberFeePercent() != null)
sb.append("DataTransferSubscriberFeePercent: ").append(getDataTransferSubscriberFeePercent()).append(",");
if (getDescription() != null)
sb.append("Description: ").append(getDescription()).append(",");
if (getEncryption() != null)
sb.append("Encryption: ").append(getEncryption()).append(",");
if (getEntitlementArn() != null)
sb.append("EntitlementArn: ").append(getEntitlementArn()).append(",");
if (getEntitlementStatus() != null)
sb.append("EntitlementStatus: ").append(getEntitlementStatus()).append(",");
if (getName() != null)
sb.append("Name: ").append(getName()).append(",");
if (getSubscribers() != null)
sb.append("Subscribers: ").append(getSubscribers());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof Entitlement == false)
return false;
Entitlement other = (Entitlement) obj;
if (other.getDataTransferSubscriberFeePercent() == null ^ this.getDataTransferSubscriberFeePercent() == null)
return false;
if (other.getDataTransferSubscriberFeePercent() != null
&& other.getDataTransferSubscriberFeePercent().equals(this.getDataTransferSubscriberFeePercent()) == false)
return false;
if (other.getDescription() == null ^ this.getDescription() == null)
return false;
if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false)
return false;
if (other.getEncryption() == null ^ this.getEncryption() == null)
return false;
if (other.getEncryption() != null && other.getEncryption().equals(this.getEncryption()) == false)
return false;
if (other.getEntitlementArn() == null ^ this.getEntitlementArn() == null)
return false;
if (other.getEntitlementArn() != null && other.getEntitlementArn().equals(this.getEntitlementArn()) == false)
return false;
if (other.getEntitlementStatus() == null ^ this.getEntitlementStatus() == null)
return false;
if (other.getEntitlementStatus() != null && other.getEntitlementStatus().equals(this.getEntitlementStatus()) == 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.getSubscribers() == null ^ this.getSubscribers() == null)
return false;
if (other.getSubscribers() != null && other.getSubscribers().equals(this.getSubscribers()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getDataTransferSubscriberFeePercent() == null) ? 0 : getDataTransferSubscriberFeePercent().hashCode());
hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode());
hashCode = prime * hashCode + ((getEncryption() == null) ? 0 : getEncryption().hashCode());
hashCode = prime * hashCode + ((getEntitlementArn() == null) ? 0 : getEntitlementArn().hashCode());
hashCode = prime * hashCode + ((getEntitlementStatus() == null) ? 0 : getEntitlementStatus().hashCode());
hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
hashCode = prime * hashCode + ((getSubscribers() == null) ? 0 : getSubscribers().hashCode());
return hashCode;
}
@Override
public Entitlement clone() {
try {
return (Entitlement) 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.mediaconnect.model.transform.EntitlementMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy