Example usage for com.amazonaws.services.elastictranscoder.model ReadJobResult getJob

List of usage examples for com.amazonaws.services.elastictranscoder.model ReadJobResult getJob

Introduction

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

Prototype


public Job getJob() 

Source Link

Document

A section of the response body that provides information about the job.

Usage

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

License:Open Source License

public cfData execute(cfSession _session, cfArgStructData argStruct) throws cfmRunTimeException {
    AmazonKey amazonKey = getAmazonKey(_session, argStruct);
    AmazonElasticTranscoder et = getAmazonElasticTranscoder(amazonKey);

    String jobid = getNamedStringParam(argStruct, "jobid", null);
    if (jobid == null)
        throwException(_session, "Please specify a jobid");

    try {//w w w .ja v  a2  s.co m
        ReadJobResult rjr = et.readJob(new ReadJobRequest().withId(jobid));
        return new cfStringData(rjr.getJob().getStatus());
    } catch (Exception e) {
        throwException(_session, "AmazonElasticTranscoder: " + e.getMessage());
    }

    return cfBooleanData.TRUE;
}