KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > security > authenticator > Authenticator


1 package org.jbpm.security.authenticator;
2
3 /**
4  * interface for plugging in different ways of retrieving the currently
5  * authenticated actorId.
6  */

7 public interface Authenticator {
8   
9   /**
10    * get the actorId of the currently authenticated user.
11    */

12   String JavaDoc getAuthenticatedActorId();
13 }
14
Popular Tags