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

com.emc.storageos.model.block.export.ClustersParam 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.block.export;

import java.net.URI;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;

/**
 * Create parameter for cluster
 */
public class ClustersParam {

    private List clusters;

    public ClustersParam() {
    }

    public ClustersParam(List clusters) {
        this.clusters = clusters;
    }

    @XmlElementWrapper(required = false)
    @XmlElement(name = "cluster")
    public List getClusters() {
        if (clusters == null) {
            clusters = new ArrayList();
        }
        return clusters;
    }

    public void setClusters(List clusters) {
        this.clusters = clusters;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy