Interface IContext

All Superinterfaces:
Serializable

public interface IContext extends Serializable
The IContext interface is used on the various methods of the IBaseWorkflowModule object. Several methods are available to get a context object.

1) From a specified user

   IUser user = workflowModule.getUserByLogin( "sysadmin" );
   IContext userContext = workflowModule.getContext( user );
 

2) From an external ID

   IContext externalIDContext = workflowModule.getContext( getNavigator().getLoggedOnUser().getExternId() );
 

3) From a login

   IContext loginContext = workflowModule.getContextByLogin( "sysadmin" );
 
Since:
1.0, 15/04/2008
Author:
vlygeros
See Also:
  • Method Details

    • getUserId

      String getUserId()
    • getLanguage

      String getLanguage()
    • getUser

      IUser getUser()