com.emc.storageos.model.property.PropertyList Maven / Gradle / Ivy
/*
* Copyright (c) 2013 EMC Corporation
* All Rights Reserved
*/
package com.emc.storageos.model.property;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
//Argument for reset-properties call
@XmlRootElement(name = "property_list")
public class PropertyList {
private List propertyList;
public PropertyList() {
}
public PropertyList(List propertyList) {
this.propertyList = propertyList;
}
@XmlElement(name = "property")
public List getPropertyList() {
if (propertyList == null) {
propertyList = new ArrayList();
}
return propertyList;
}
public void setPropertyList(ArrayList propertyList) {
this.propertyList = propertyList;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy