com.emc.storageos.model.vpool.ServiceProfileTemplateAssignments Maven / Gradle / Ivy
/*
* Copyright (c) 2015 EMC Corporation
* All Rights Reserved
*/
package com.emc.storageos.model.vpool;
import java.util.HashSet;
import java.util.Set;
import javax.xml.bind.annotation.XmlElement;
/**
* Class captures a list of URIs for the Service Profile Templates assigned to the
* Compute Virtual Pool.
*/
public class ServiceProfileTemplateAssignments {
private Set templates;
public ServiceProfileTemplateAssignments() {
}
public ServiceProfileTemplateAssignments(Set templates) {
this.templates = templates;
}
// The set of SPT URIs.
@XmlElement(name = "service_profile_template")
public Set getServiceProfileTemplates() {
if (templates == null) {
templates = new HashSet();
}
return templates;
}
public void setServiceProfileTemplates(Set templates) {
this.templates = templates;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy