Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/jbpm/workflow/organisation/Actor.java


1   package org.jbpm.workflow.organisation;
2   
3   /**
4    * is a {@link User} or a {@link Group} to which a flow can be assigned.
5    */
6   public interface Actor extends java.io.Serializable {
7     
8     /**
9      * is the id for this actor.  This is a text field because of flexibility.
10     */
11    String getId();
12    
13    /**
14     * the name for the actor.
15     */
16    String getName();
17  }