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

Quick Search    Search Deep

org.jbpm.workflow.organisation
Interface Group  view Group download Group.java

All Superinterfaces:
Actor, java.io.Serializable

public interface Group
extends Actor

is any type of collection of users. Organisational entities such as a business unit, a department, a team, ... or a goup could be created for e.g. : all the people with red hair. Groups can be ordered hierarchically. This is mostly the case in groups that represent the organisational hierarchy.

Since it's not possible to capture all group-information that is used in all organisations in this interface, a basic default set of properties is provided and it is made easy to extend them by customizing this organisation component.


Method Summary
 java.util.Collection getChildren()
          gets the child-Groups of this group.
 java.util.Collection getMemberships()
          gets all the Memberships of this Group.
 Group getParent()
          gets the parent-Group of this group.
 
Methods inherited from interface org.jbpm.workflow.organisation.Actor
getId, getName
 

Method Detail

getMemberships

public java.util.Collection getMemberships()
gets all the Memberships of this Group.


getParent

public Group getParent()
gets the parent-Group of this group.


getChildren

public java.util.Collection getChildren()
gets the child-Groups of this group.