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

com.emc.storageos.model.compute.ComputeElementListRestRep 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.storageos.model.compute;

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

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement(name = "compute_elements")
public class ComputeElementListRestRep {

    private List list;

    public ComputeElementListRestRep() {
    }

    public ComputeElementListRestRep(List list) {
        this.list = list;
    }

    @XmlElement(name = "compute_element")
    public List getList() {
        if (list == null) {
            list = new ArrayList();
        }
        return list;
    }

    public void setList(List list) {
        this.list = list;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy