com.ibm.ram.common.data
Class RoleInformation

java.lang.Object
  extended by com.ibm.ram.common.data.RoleInformation

public class RoleInformation
extends java.lang.Object

Provides information about a user role

Since:
7.1

Constructor Summary
RoleInformation()
           
 
Method Summary
 CommunityInformation getCommunity()
           
 java.lang.String getDescription()
           
 int getId()
           
 java.lang.String getName()
           
 void setCommunity(CommunityInformation community)
           
 void setDescription(java.lang.String description)
           
 void setId(int id)
           
 void setName(java.lang.String name)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RoleInformation

public RoleInformation()
Method Detail

getName

public java.lang.String getName()
Returns:
The name of this role.
Since:
7.1

setName

public void setName(java.lang.String name)
Parameters:
name - The name of this role.
Since:
7.1

getId

public int getId()
Returns:
the database if for this role.
Since:
7.1

setId

public void setId(int id)
Parameters:
id - The database id for this role.
Since:
7.1

getDescription

public java.lang.String getDescription()
Returns:
The description of this role.
Since:
7.1

setDescription

public void setDescription(java.lang.String description)
Parameters:
description - The description of this role.
Since:
7.1

getCommunity

public CommunityInformation getCommunity()
Returns:
The community this role belongs to.
Since:
7.1

setCommunity

public void setCommunity(CommunityInformation community)
Parameters:
community - The community this role belongs to.
Since:
7.1