com.emc.storageos.model.customconfig.CustomConfigBulkRep Maven / Gradle / Ivy
/*
* Copyright (c) 2014 EMC Corporation
* All Rights Reserved
*/
package com.emc.storageos.model.customconfig;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import com.emc.storageos.model.BulkRestRep;
@XmlRootElement(name = "bulk_configs")
public class CustomConfigBulkRep extends BulkRestRep {
private List configs;
public CustomConfigBulkRep() {
}
public CustomConfigBulkRep(List configs) {
this.configs = configs;
}
@XmlElement(name = "config")
public List getCustomConfigs() {
if (configs == null) {
configs = new ArrayList();
}
return configs;
}
public void setCustomConfigs(List configs) {
this.configs = configs;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy