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

com.emc.storageos.model.VirtualArrayRelatedResourceRep 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;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;

import org.codehaus.jackson.annotate.JsonProperty;

@XmlAccessorType(XmlAccessType.PROPERTY)
public class VirtualArrayRelatedResourceRep extends RelatedResourceRep {
    private RelatedResourceRep virtualArray;

    /**
     * Virtual array where this Block object exists.
     * 
     * @valid none
     */
    @XmlElement(name = "varray")
    @JsonProperty("varray")
    public RelatedResourceRep getVirtualArray() {
        return virtualArray;
    }

    public void setVirtualArray(RelatedResourceRep virtualArray) {
        this.virtualArray = virtualArray;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy