10 lines
241 B
Java
10 lines
241 B
Java
package com.reliancy.jabbasec;
|
|
|
|
/**
|
|
* Interface that is implemented by any User or Principal entity.
|
|
* Often an AppSession will be determined in many ways by the user.
|
|
*/
|
|
public interface SecurityActor extends Securable{
|
|
|
|
}
|