| java.lang.Object net.jforum.entities.Group
Group | public class Group (Code) | | Represents a group in the system.
author: Rafael Steil |
Constructor Summary | |
public | Group() | public | Group(int id, int parentId, String name, String description) Create a new Group object. |
Group | public Group()(Code) | | Default constructor
|
Group | public Group(int id, int parentId, String name, String description)(Code) | | Create a new Group object.
Parameters: id - The Group ID Parameters: parentId - The parent ID for the group Parameters: name - The Group Name Parameters: description - The Group Description |
getId | public int getId()(Code) | | int |
getParentId | public int getParentId()(Code) | | int |
hashCode | public int hashCode()(Code) | | |
setDescription | public void setDescription(String description)(Code) | | Sets the description.
Parameters: description - The description to set |
setId | public void setId(int id)(Code) | | Sets the id.
Parameters: id - The id to set |
setName | public void setName(String name)(Code) | | Sets the name.
Parameters: name - The name to set |
setParentId | public void setParentId(int parentId)(Code) | | Sets the parent id.
Parameters: id - The parent id to set |
|
|