Package net.sf.basedb.core.data.keyring
Class UserGroups
- java.lang.Object
-
- net.sf.basedb.core.data.keyring.UserGroups
-
- All Implemented Interfaces:
Serializable
public final class UserGroups extends Object implements Serializable
Class for mapping theUserGroups
table.- Version:
- 2.0
- Author:
- Nicklas
- See Also:
- Serialized Form
- Last modified
- $Date: 2015-04-16 13:47:41 +0200 (to, 16 apr 2015) $
-
-
Field Summary
Fields Modifier and Type Field Description private int
groupId
private static long
serialVersionUID
private int
userId
-
Constructor Summary
Constructors Constructor Description UserGroups()
Create a newUserGroups
object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Check if this object is equal to anotherUserGroups
object.int
getGroupId()
Get the id of the group.int
getUserId()
Get the id of the user.int
hashCode()
Calculate the hash code for the object.void
setGroupId(int groupId)
Set the id of the group.void
setUserId(int userId)
Set the id of the user.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
userId
private int userId
-
groupId
private int groupId
-
-
Method Detail
-
getUserId
public int getUserId()
Get the id of the user.
-
setUserId
public void setUserId(int userId)
Set the id of the user.
-
getGroupId
public int getGroupId()
Get the id of the group.
-
setGroupId
public void setGroupId(int groupId)
Set the id of the group.
-
equals
public boolean equals(Object o)
Check if this object is equal to anotherUserGroups
object. They are considered to be the same if the user id and the group id are the same.
-
-