Example usage for com.amazonaws.services.elastictranscoder.model Encryption Encryption

List of usage examples for com.amazonaws.services.elastictranscoder.model Encryption Encryption

Introduction

In this page you can find the example usage for com.amazonaws.services.elastictranscoder.model Encryption Encryption.

Prototype

Encryption

Source Link

Usage

From source file:org.alanwilliamson.amazon.transcoder.job.Create.java

License:Open Source License

private Encryption getEncryption(cfStructData es) throws dataNotSupportedException {
    Encryption e = new Encryption();

    if (es.containsKey("key"))
        e.setKey(es.getData("key").getString());

    if (es.containsKey("keymd5"))
        e.setKeyMd5(es.getData("keymd5").getString());

    if (es.containsKey("mode"))
        e.setMode(es.getData("mode").getString());

    if (es.containsKey("initializationvector"))
        e.setInitializationVector(es.getData("initializationvector").getString());

    return e;//  ww w. j  av  a  2  s  .  c o  m
}