All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.emc.storageos.model.vpool.ServiceProfileTemplateAssignments Maven / Gradle / Ivy

There is a newer version: 3.5.0.0
Show newest version
/*
 * 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