com.woorea.openstack.keystone.model.Role Maven / Gradle / Ivy
package com.woorea.openstack.keystone.model;
import java.io.Serializable;
import org.codehaus.jackson.map.annotate.JsonRootName;
@JsonRootName("role")
public class Role implements Serializable {
private String id;
private String name;
private String description;
private String enabled;
/**
* @return the id
*/
public String getId() {
return id;
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the description
*/
public String getDescription() {
return description;
}
/**
* @param description the description to set
*/
public void setDescription(String description) {
this.description = description;
}
/**
* @return the enabled
*/
public String getEnabled() {
return enabled;
}
/**
* @param enabled the enabled to set
*/
public void setEnabled(String enabled) {
this.enabled = enabled;
}
}