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

com.emc.vipr.model.catalog.AssetDependencyResponse Maven / Gradle / Ivy

There is a newer version: 3.5.0.0
Show newest version
/*
 * Copyright (c) 2015 EMC Corporation
 * All Rights Reserved
 */
package com.emc.vipr.model.catalog;

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

import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
public class AssetDependencyResponse {

    private String assetType;
    private List assetDependencies;

    public String getAssetType() {
        return assetType;
    }

    public void setAssetType(String assetType) {
        this.assetType = assetType;
    }

    public List getAssetDependencies() {
        if (assetDependencies == null) {
            assetDependencies = new ArrayList<>();
        }
        return assetDependencies;
    }

    public void setAssetDependencies(List assetDependencies) {
        this.assetDependencies = assetDependencies;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy