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

com.amazonaws.services.elastictranscoder.model.JobWatermark Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Elastic Transcoder module holds the client classes that are used for communicating with Amazon Elastic Transcoder Service

There is a newer version: 1.9.35
Show newest version
/*
 * 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.elastictranscoder.model;

import java.io.Serializable;

/**
 * 

* Watermarks can be in .png or .jpg format. If you want to display a watermark * that is not rectangular, use the .png format, which supports transparency. *

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

* The ID of the watermark settings that Elastic Transcoder uses to add * watermarks to the video during transcoding. The settings are in the * preset specified by Preset for the current output. In that preset, the * value of Watermarks Id tells Elastic Transcoder which settings to use. *

*/ private String presetWatermarkId; /** *

* The name of the .png or .jpg file that you want to use for the watermark. * To determine which Amazon S3 bucket contains the specified file, Elastic * Transcoder checks the pipeline specified by Pipeline; the * Input Bucket object in that pipeline identifies the bucket. *

*

* If the file name includes a prefix, for example, logos/128x64.png, * include the prefix in the key. If the file isn't in the specified bucket, * Elastic Transcoder returns an error. *

*/ private String inputKey; /** *

* The encryption settings, if any, that you want Elastic Transcoder to * apply to your watermarks. *

*/ private Encryption encryption; /** *

* The ID of the watermark settings that Elastic Transcoder uses to add * watermarks to the video during transcoding. The settings are in the * preset specified by Preset for the current output. In that preset, the * value of Watermarks Id tells Elastic Transcoder which settings to use. *

* * @param presetWatermarkId * The ID of the watermark settings that Elastic Transcoder uses to * add watermarks to the video during transcoding. The settings are * in the preset specified by Preset for the current output. In that * preset, the value of Watermarks Id tells Elastic Transcoder which * settings to use. */ public void setPresetWatermarkId(String presetWatermarkId) { this.presetWatermarkId = presetWatermarkId; } /** *

* The ID of the watermark settings that Elastic Transcoder uses to add * watermarks to the video during transcoding. The settings are in the * preset specified by Preset for the current output. In that preset, the * value of Watermarks Id tells Elastic Transcoder which settings to use. *

* * @return The ID of the watermark settings that Elastic Transcoder uses to * add watermarks to the video during transcoding. The settings are * in the preset specified by Preset for the current output. In that * preset, the value of Watermarks Id tells Elastic Transcoder which * settings to use. */ public String getPresetWatermarkId() { return this.presetWatermarkId; } /** *

* The ID of the watermark settings that Elastic Transcoder uses to add * watermarks to the video during transcoding. The settings are in the * preset specified by Preset for the current output. In that preset, the * value of Watermarks Id tells Elastic Transcoder which settings to use. *

* * @param presetWatermarkId * The ID of the watermark settings that Elastic Transcoder uses to * add watermarks to the video during transcoding. The settings are * in the preset specified by Preset for the current output. In that * preset, the value of Watermarks Id tells Elastic Transcoder which * settings to use. * @return Returns a reference to this object so that method calls can be * chained together. */ public JobWatermark withPresetWatermarkId(String presetWatermarkId) { setPresetWatermarkId(presetWatermarkId); return this; } /** *

* The name of the .png or .jpg file that you want to use for the watermark. * To determine which Amazon S3 bucket contains the specified file, Elastic * Transcoder checks the pipeline specified by Pipeline; the * Input Bucket object in that pipeline identifies the bucket. *

*

* If the file name includes a prefix, for example, logos/128x64.png, * include the prefix in the key. If the file isn't in the specified bucket, * Elastic Transcoder returns an error. *

* * @param inputKey * The name of the .png or .jpg file that you want to use for the * watermark. To determine which Amazon S3 bucket contains the * specified file, Elastic Transcoder checks the pipeline specified * by Pipeline; the Input Bucket object in * that pipeline identifies the bucket.

*

* If the file name includes a prefix, for example, * logos/128x64.png, include the prefix in the key. If the * file isn't in the specified bucket, Elastic Transcoder returns an * error. */ public void setInputKey(String inputKey) { this.inputKey = inputKey; } /** *

* The name of the .png or .jpg file that you want to use for the watermark. * To determine which Amazon S3 bucket contains the specified file, Elastic * Transcoder checks the pipeline specified by Pipeline; the * Input Bucket object in that pipeline identifies the bucket. *

*

* If the file name includes a prefix, for example, logos/128x64.png, * include the prefix in the key. If the file isn't in the specified bucket, * Elastic Transcoder returns an error. *

* * @return The name of the .png or .jpg file that you want to use for the * watermark. To determine which Amazon S3 bucket contains the * specified file, Elastic Transcoder checks the pipeline specified * by Pipeline; the Input Bucket object in * that pipeline identifies the bucket.

*

* If the file name includes a prefix, for example, * logos/128x64.png, include the prefix in the key. If the * file isn't in the specified bucket, Elastic Transcoder returns an * error. */ public String getInputKey() { return this.inputKey; } /** *

* The name of the .png or .jpg file that you want to use for the watermark. * To determine which Amazon S3 bucket contains the specified file, Elastic * Transcoder checks the pipeline specified by Pipeline; the * Input Bucket object in that pipeline identifies the bucket. *

*

* If the file name includes a prefix, for example, logos/128x64.png, * include the prefix in the key. If the file isn't in the specified bucket, * Elastic Transcoder returns an error. *

* * @param inputKey * The name of the .png or .jpg file that you want to use for the * watermark. To determine which Amazon S3 bucket contains the * specified file, Elastic Transcoder checks the pipeline specified * by Pipeline; the Input Bucket object in * that pipeline identifies the bucket.

*

* If the file name includes a prefix, for example, * logos/128x64.png, include the prefix in the key. If the * file isn't in the specified bucket, Elastic Transcoder returns an * error. * @return Returns a reference to this object so that method calls can be * chained together. */ public JobWatermark withInputKey(String inputKey) { setInputKey(inputKey); return this; } /** *

* The encryption settings, if any, that you want Elastic Transcoder to * apply to your watermarks. *

* * @param encryption * The encryption settings, if any, that you want Elastic Transcoder * to apply to your watermarks. */ public void setEncryption(Encryption encryption) { this.encryption = encryption; } /** *

* The encryption settings, if any, that you want Elastic Transcoder to * apply to your watermarks. *

* * @return The encryption settings, if any, that you want Elastic Transcoder * to apply to your watermarks. */ public Encryption getEncryption() { return this.encryption; } /** *

* The encryption settings, if any, that you want Elastic Transcoder to * apply to your watermarks. *

* * @param encryption * The encryption settings, if any, that you want Elastic Transcoder * to apply to your watermarks. * @return Returns a reference to this object so that method calls can be * chained together. */ public JobWatermark withEncryption(Encryption encryption) { setEncryption(encryption); 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 (getPresetWatermarkId() != null) sb.append("PresetWatermarkId: " + getPresetWatermarkId() + ","); if (getInputKey() != null) sb.append("InputKey: " + getInputKey() + ","); if (getEncryption() != null) sb.append("Encryption: " + getEncryption()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof JobWatermark == false) return false; JobWatermark other = (JobWatermark) obj; if (other.getPresetWatermarkId() == null ^ this.getPresetWatermarkId() == null) return false; if (other.getPresetWatermarkId() != null && other.getPresetWatermarkId().equals( this.getPresetWatermarkId()) == false) return false; if (other.getInputKey() == null ^ this.getInputKey() == null) return false; if (other.getInputKey() != null && other.getInputKey().equals(this.getInputKey()) == false) return false; if (other.getEncryption() == null ^ this.getEncryption() == null) return false; if (other.getEncryption() != null && other.getEncryption().equals(this.getEncryption()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getPresetWatermarkId() == null) ? 0 : getPresetWatermarkId().hashCode()); hashCode = prime * hashCode + ((getInputKey() == null) ? 0 : getInputKey().hashCode()); hashCode = prime * hashCode + ((getEncryption() == null) ? 0 : getEncryption().hashCode()); return hashCode; } @Override public JobWatermark clone() { try { return (JobWatermark) 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