All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.brightcove.castlabs.client.request.AssetRequest Maven / Gradle / Ivy

/**
 * Copyright 2015 Brightcove Inc. All rights reserved.
 * 
 * @author Scott Kidder
 */
package com.brightcove.castlabs.client.request;

import java.util.ArrayList;
import java.util.List;

/**
 * @author Scott Kidder
 *
 */
public class AssetRequest {
    private AssetType type;
    private String assetId;
    private String variantId;
    private List ingestKeys = new ArrayList();

    public AssetType getType() {
        return type;
    }

    public void setType(AssetType type) {
        this.type = type;
    }

    public String getAssetId() {
        return assetId;
    }

    public void setAssetId(String assetId) {
        this.assetId = assetId;
    }

    public String getVariantId() {
        return variantId;
    }

    public void setVariantId(String variantId) {
        this.variantId = variantId;
    }

    public List getIngestKeys() {
        return ingestKeys;
    }

    public void setIngestKeys(List ingestKeys) {
        this.ingestKeys = ingestKeys;
    }

    @Override
    public String toString() {
        return "Asset [type=" + type + ", assetId=" + assetId + ", variantId=" + variantId
                + ", ingestKeys=" + ingestKeys + "]";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy