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

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

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import java.util.ArrayList;
import java.util.List;

@XmlRootElement(name = "compute_systems")
public class ComputeSystemList {
    private List computeSystems;

    public ComputeSystemList() {
    }

    public ComputeSystemList(List computeSystems) {
        this.computeSystems = computeSystems;
    }

    /**
     * List of compute system URLs with name
     * 
     * @valid none
     */
    @XmlElement(name = "compute_system")
    public List getComputeSystems() {
        if (computeSystems == null) {
            computeSystems = new ArrayList();
        }
        return computeSystems;
    }

    public void setComputeSystems(List computeSystems) {
        this.computeSystems = computeSystems;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy