List of usage examples for com.amazonaws.services.glacier.model ListJobsRequest ListJobsRequest
public ListJobsRequest()
From source file:com.vrane.metaGlacier.Vault.java
/** * Gets a list of jobs attached to this vault. * * @return a list of <code>GlacierJobDescription</code> *//*w ww . j a v a 2 s .co m*/ public List<GlacierJobDescription> listJobs() { final ListJobsRequest ljr = new ListJobsRequest(); final ListJobsResult ljres = GlacierFrame.getClient(region) .listJobs(ljr.withVaultName(name).withCompleted("true")); return ljres.getJobList(); }