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

com.emc.storageos.model.protection.RPClusterVirtualArrayResourceUpdateParam Maven / Gradle / Ivy

There is a newer version: 3.5.0.0
Show newest version
/*
 * Copyright (c) 2014 EMC Corporation
 * All Rights Reserved
 */
package com.emc.storageos.model.protection;

import java.util.Set;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;

import org.codehaus.jackson.annotate.JsonProperty;

public class RPClusterVirtualArrayResourceUpdateParam {

    private Set varrayAssignmentChanges;

    public RPClusterVirtualArrayResourceUpdateParam() {
    }

    public RPClusterVirtualArrayResourceUpdateParam(Set varrayChanges) {
        varrayAssignmentChanges = varrayChanges;
    }

    /**
     * The list of virtual arrays to be added to or removed from the resource.
     * 
     * @valid none
     */
    @XmlElementWrapper(name = "varray_assignment_changes")
    @XmlElement(name = "varray_assignment_change")
    @JsonProperty("varray_assignment_changes")
    public Set getVarrayChanges() {
        return varrayAssignmentChanges;
    }

    public void setVarrayChanges(Set varrayChanges) {
        varrayAssignmentChanges = varrayChanges;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy