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 getAuthenticatedActorId(); 13 } 14