dashboard
repositories
activity
search
login
common
/
securis
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#0 fix - Fixed Lic Type Metadata JPA annotation
rsanchez
2015-07-17
0a02bb7acd7e893197aa82f297c14f113d4666dd
[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;
}
}