dashboard
repositories
activity
search
login
common
/
securis
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#2140 fix - Added renew period to pack, change on DB schema, fixed pack sel...
rsanchez
2014-12-11
36edce38f6b17f73322fa38404d6e01818a44fd2
[common/securis.git]
/
securis
/
src
/
main
/
java
/
net
/
curisit
/
securis
/
db
/
common
/
PackStatusType.java
1
2
3
4
5
6
7
8
9
10
11
12
package net.curisit.securis.db.common;
import net.curisit.securis.db.PackStatus;
public class PackStatusType extends PersistentEnumUserType<PackStatus> {
@Override
public Class<PackStatus> returnedClass() {
return PackStatus.class;
}
}