com.emc.vipr.model.catalog.CatalogServiceBulkRep Maven / Gradle / Ivy
/*
* Copyright (c) 2015 EMC Corporation
* All Rights Reserved
*/
package com.emc.vipr.model.catalog;
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_catalog_services")
public class CatalogServiceBulkRep extends BulkRestRep {
private List catalogServices;
public CatalogServiceBulkRep() {
}
/**
* List of catalog services
*
* @valid none
* @return catalog services list
*/
@XmlElement(name = "catalog_service")
public List getCatalogServices() {
if (catalogServices == null) {
catalogServices = new ArrayList();
}
return catalogServices;
}
public void setCatalogServices(List catalogServices) {
this.catalogServices = catalogServices;
}
public CatalogServiceBulkRep(List catalogServices) {
this.catalogServices = catalogServices;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy