com.emc.storageos.model.customconfig.ScopeParamList Maven / Gradle / Ivy
/*
* 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