Package com.microsoft.windowsazure.services.media.entityoperations

Examples of com.microsoft.windowsazure.services.media.entityoperations.DefaultActionOperation


     * @param jobId
     *            the job id
     * @return the entity action operation
     */
    public static EntityActionOperation cancel(String jobId) {
        return new DefaultActionOperation("CancelJob").addQueryParameter(
                "jobId", String.format("'%s'", jobId));
    }
View Full Code Here


            encodedId = URLEncoder.encode(assetId, "UTF-8");
        } catch (UnsupportedEncodingException ex) {
            // This can never happen unless JVM is broken
            throw new RuntimeException(ex);
        }
        return new DefaultActionOperation("CreateFileInfos").addQueryParameter(
                "assetid", "'" + encodedId + "'");
    }
View Full Code Here

TOP

Related Classes of com.microsoft.windowsazure.services.media.entityoperations.DefaultActionOperation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.