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

com.emc.storageos.model.customconfig.ScopeParamList Maven / Gradle / Ivy

There is a newer version: 3.5.0.0
Show newest version
/*
 * Copyright (c) 2014 EMC Corporation
 * All Rights Reserved
 */

package com.emc.storageos.model.customconfig;

import java.util.List;

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

@XmlRootElement(name = "scopes")
public class ScopeParamList {
    private List scopes;

    public ScopeParamList() {
    }

    public ScopeParamList(List scopes) {
        this.scopes = scopes;
    }

    @XmlElement(name = "scope")
    public List getScopes() {
        return scopes;
    }

    public void setScopes(List scopes) {
        this.scopes = scopes;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy