com.tszadel.qctools4j.model.user
Class Group

java.lang.Object
  extended by com.tszadel.qctools4j.model.user.Group

public class Group
extends Object

Groups of users with a common set of privileges.

Author:
tszadel

Constructor Summary
Group()
           
 
Method Summary
 Integer getGroupId()
          Get the field GR_GROUP_ID.
 String getGroupName()
          Get the field GR_GROUP_NAME.
 Boolean getIsSystem()
          Get the field GR_IS_SYSTEM.
 void setGroupId(Integer pGroupId)
          Set the field GR_GROUP_ID.
 void setGroupName(String pGroupName)
          Set the field GR_GROUP_NAME.
 void setIsSystem(Boolean pIsSystem)
          Set the field GR_IS_SYSTEM.
 String toString()
          Overrides toString.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Group

public Group()
Method Detail

getGroupId

public Integer getGroupId()
Get the field GR_GROUP_ID.
Description:The ID of the group serves as its bit-offset in masks that define characteristics of groups.

Returns:
The field GR_GROUP_ID.

getGroupName

public String getGroupName()
Get the field GR_GROUP_NAME.
Description:The name of the group.

Returns:
The field GR_GROUP_NAME.

getIsSystem

public Boolean getIsSystem()
Get the field GR_IS_SYSTEM.
Description:A value of Y indicates that this is a default user group created automatically in new projects. N indicates that the group was added.

Returns:
The field GR_IS_SYSTEM.

setGroupId

public void setGroupId(Integer pGroupId)
Set the field GR_GROUP_ID.
Description:The ID of the group serves as its bit-offset in masks that define characteristics of groups.

Parameters:
pGroupId - The value of the field GR_GROUP_ID.

setGroupName

public void setGroupName(String pGroupName)
Set the field GR_GROUP_NAME.
Description:The name of the group.

Parameters:
pGroupName - The value of the field GR_GROUP_NAME.

setIsSystem

public void setIsSystem(Boolean pIsSystem)
Set the field GR_IS_SYSTEM.
Description:A value of Y indicates that this is a default user group created automatically in new projects. N indicates that the group was added.

Parameters:
pIsSystem - The value of the field GR_IS_SYSTEM.

toString

public String toString()
Overrides toString.

Overrides:
toString in class Object
See Also:
Object.toString()