Class Token
- java.lang.Object
-
- com.tarsolution.notifyman.data.entity.Token
-
- All Implemented Interfaces:
IHasPrimaryKey<Integer>
,Serializable
@Entity public class Token extends Object implements Serializable, IHasPrimaryKey<Integer>
- Author:
- FMARSLAN
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Token()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
List<AuthorizationCode>
getAuthorizationCodes()
Integer
getId()
String
getToken()
int
hashCode()
void
setAuthorizationCodes(List<AuthorizationCode> authorizationCodes)
void
setId(Integer id)
void
setToken(String token)
String
toString()
-
-
-
Method Detail
-
getId
public Integer getId()
- Specified by:
getId
in interfaceIHasPrimaryKey<Integer>
-
setId
public void setId(Integer id)
- Specified by:
setId
in interfaceIHasPrimaryKey<Integer>
-
getToken
public String getToken()
-
setToken
public void setToken(String token)
-
getAuthorizationCodes
public List<AuthorizationCode> getAuthorizationCodes()
-
setAuthorizationCodes
public void setAuthorizationCodes(List<AuthorizationCode> authorizationCodes)
-
-