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

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

import com.emc.storageos.model.BulkRestRep;

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

import java.util.ArrayList;
import java.util.List;

@XmlRootElement(name = "bulk_tenants")
public class TenantOrgBulkRep extends BulkRestRep {
    private List tenants;

    /**
     * List of tenants
     * 
     * @valid none
     */
    @XmlElement(name = "tenant")
    public List getTenants() {
        if (tenants == null) {
            tenants = new ArrayList();
        }
        return tenants;
    }

    public void setTenants(List tenants) {
        this.tenants = tenants;
    }

    public TenantOrgBulkRep() {
    }

    public TenantOrgBulkRep(List tenants) {
        this.tenants = tenants;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy