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

com.emc.storageos.model.varray.VirtualArrayInternalFlags Maven / Gradle / Ivy

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

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

@XmlRootElement(name = "varray_internal_flags")
public class VirtualArrayInternalFlags {
    private String protectionType;
    private Boolean deviceRegistered;

    public VirtualArrayInternalFlags() {
    }

    @XmlElement(name = "protectionType")
    public String getProtectionType() {
        return protectionType;
    }

    public void setProtectionType(String protectionType) {
        this.protectionType = protectionType;
    }

    @XmlElement(name = "deviceRegistered")
    public Boolean getDeviceRegistered() {
        return deviceRegistered;
    }

    public void setDeviceRegistered(Boolean deviceRegistered) {
        this.deviceRegistered = deviceRegistered;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy