]> git.argeo.org Git - lgpl/argeo-commons.git/blob - security/ArgeoSecurity.java
Prepare next development cycle
[lgpl/argeo-commons.git] / security / ArgeoSecurity.java
1 package org.argeo.security;
2
3 /** Callback related to the lifecycle of a user. */
4 public interface ArgeoSecurity {
5 /**
6 * Called before a user is actually created. Default user natures and roles
7 * should be added there.
8 */
9 public void beforeCreate(ArgeoUser user);
10
11 public String getSuperUsername();
12 }