/* Copyright (c) 2015 EMC Corporation * All Rights Reserved * */ package com.emc.storageos.keystone.restapi.model.response; public class Tenant { private String description; private boolean enabled; private String id; private String name; public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public boolean isEnabled() { return enabled; } public void setEnabled(boolean enabled) { this.enabled = enabled; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } }