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

com.emc.storageos.model.host.vcenter.VcenterDataCenterParam 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.host.vcenter;

import javax.xml.bind.annotation.XmlElement;

/**
 * Captures POST data for a vCenter data center.
 */
public class VcenterDataCenterParam {

    private String name;

    public VcenterDataCenterParam() {
    }

    public VcenterDataCenterParam(String name) {
        this.name = name;
    }

    /**
     * The name label for this vCenter data center
     * 
     * @valid none
     */
    @XmlElement(required = true)
    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy