]> git.argeo.org Git - lgpl/argeo-commons.git/blob - security/runtime/org.argeo.security.core/src/main/java/org/argeo/security/UserNature.java
Introduce light DAO support
[lgpl/argeo-commons.git] / security / runtime / org.argeo.security.core / src / main / java / org / argeo / security / UserNature.java
1 package org.argeo.security;
2
3 import java.io.Serializable;
4
5 public class UserNature implements Serializable {
6 private static final long serialVersionUID = 1L;
7
8 private String type;
9
10 public String getType() {
11 if (type != null)
12 return type;
13 else
14 return getClass().getName();
15 }
16
17 public void setType(String type) {
18 this.type = type;
19 }
20 }