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

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


     * @param jobId
     *            id of job to delete
     * @return the delete operation
     */
    public static EntityDeleteOperation delete(String jobId) {
        return new DefaultDeleteOperation(ENTITY_SET, jobId);
    }
View Full Code Here


     * @param assetId
     *            id of asset to delete
     * @return the delete operation
     */
    public static EntityDeleteOperation delete(String assetId) {
        return new DefaultDeleteOperation(ENTITY_SET, assetId);
    }
View Full Code Here

     * @param accessPolicyId
     *            id of access policy to delete
     * @return the delete operation
     */
    public static EntityDeleteOperation delete(String accessPolicyId) {
        return new DefaultDeleteOperation(ENTITY_SET, accessPolicyId);
    }
View Full Code Here

     * @param locatorId
     *            id of locator to delete
     * @return the operation
     */
    public static EntityDeleteOperation delete(String locatorId) {
        return new DefaultDeleteOperation(ENTITY_SET, locatorId);
    }
View Full Code Here

     * @param notificationEndPointId
     *            id of notification end point to delete
     * @return the delete operation
     */
    public static EntityDeleteOperation delete(String notificationEndPointId) {
        return new DefaultDeleteOperation(ENTITY_SET, notificationEndPointId);
    }
View Full Code Here

     * @param assetFileId
     *            file to delete
     * @return the delete operation object
     */
    public static EntityDeleteOperation delete(String assetFileId) {
        return new DefaultDeleteOperation(ENTITY_SET, assetFileId);
    }
View Full Code Here

     * @param contentKeyId
     *            id of content key to delete
     * @return the delete operation
     */
    public static EntityDeleteOperation delete(String contentKeyId) {
        return new DefaultDeleteOperation(ENTITY_SET, contentKeyId);
    }
View Full Code Here

TOP

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

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.