User services
[lgpl/argeo-commons.git] / security / runtime / org.argeo.security.core / src / main / java / org / argeo / security / UserNature.java
index eceed398005fb04b3075341ce7565e59568a60c3..a0cda3c83a84f8d25b9942c37e2f07149e2adb6e 100644 (file)
@@ -1,5 +1,40 @@
 package org.argeo.security;
 
-public interface UserNature {
+import java.io.Serializable;
+import java.util.UUID;
 
+//@JsonAutoDetect(value = { JsonMethod.GETTER, JsonMethod.SETTER })
+public class UserNature implements Serializable {
+       private static final long serialVersionUID = 1L;
+
+       // private final static Log log = LogFactory.getLog(UserNature.class);
+
+       private String uuid = UUID.randomUUID().toString();
+       private String type;
+
+       public String getUuid() {
+               return uuid;
+       }
+
+       public void setUuid(String uuid) {
+               this.uuid = uuid;
+       }
+
+       public String getType() {
+               if (type != null)
+                       return type;
+               else
+                       return getClass().getName();
+       }
+
+       public void setType(String type) {
+               this.type = type;
+       }
+
+       // @JsonAnySetter
+       // public void anySetter(String key, Object obj) {
+       // if (obj != null)
+       // log.info("anySetter: " + key + "=" + obj + " (" + obj.getClass()
+       // + "), natureType=" + type);
+       // }
 }