Klasse AccessAdapter
java.lang.Object
org.imixs.workflow.engine.adapters.AccessAdapter
- Alle implementierten Schnittstellen:
Serializable,Adapter,GenericAdapter
The AccessAdapter is a generic adapter class responsible to update the ACL of
a workitem. The CID Bean updates the following Items
- $writeAccess
- $readAccess
- $participants
The read and write access for a workitem can be defined by the BPMN model with the ACL Properties of the Imixs-BPMN modeler.
The participants is a computed list of all users who edited this workitem.
By defining an CDI alternative an application can overwrite the behavior of this bean.
- Version:
- 1.0.0
- Autor:
- rsoika
- Siehe auch:
-
Feldübersicht
Felder -
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungDefault ConstructorAccessAdapter(WorkflowService workflowService) CDI Constructor to inject WorkflowService -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungexecute(ItemCollection document, ItemCollection event) The Execute method updates the ACL of a process instance based on a given event.voidmergeFieldList(ItemCollection documentContext, List valueList, List<String> fieldList) This method merges the values of fieldList into valueList and test for duplicates.voidmergeRoles(List valueList, List sourceList, ItemCollection documentContext) This method merges the role names from a SourceList into a valueList and removes duplicates.voidsetWorkflowService(WorkflowService workflowService) List<?> uniqueList(List<Object> valueList) This method removes duplicates and null values from a vector.updateACL(ItemCollection workitem, ItemCollection event, ItemCollection nextTask) This method updates the $readAccess and $writeAccess attributes of a WorkItem depending to the configuration of a Activity Entity.updateParticipants(ItemCollection workitem) Update the $PARTICIPANTS.
-
Felddetails
-
workflowService
-
-
Konstruktordetails
-
AccessAdapter
public AccessAdapter()Default Constructor -
AccessAdapter
CDI Constructor to inject WorkflowService- Parameter:
workflowService-
-
-
Methodendetails
-
execute
public ItemCollection execute(ItemCollection document, ItemCollection event) throws AdapterException The Execute method updates the ACL of a process instance based on a given event.- Angegeben von:
executein SchnittstelleAdapter- Parameter:
document- the workitem to be processedevent- the workflow event containing the processing instructions- Gibt zurück:
- updated workitem for further processing
- Löst aus:
AdapterException- interrupt processing
-
setWorkflowService
-
updateParticipants
Update the $PARTICIPANTS.- Parameter:
workitem-- Gibt zurück:
-
updateACL
public ItemCollection updateACL(ItemCollection workitem, ItemCollection event, ItemCollection nextTask) throws PluginException This method updates the $readAccess and $writeAccess attributes of a WorkItem depending to the configuration of a Activity Entity. The method evaluates the new model flag keyupdateacl. If 'false' then acl will not be updated.- Löst aus:
PluginException
-
mergeFieldList
This method merges the values of fieldList into valueList and test for duplicates. If an entry of the fieldList is a single key value, than the values to be merged are read from the corresponding documentContext property e.g. 'namTeam' -> maps the values of the documentContext property 'namteam' into the valueList If an entry of the fieldList is in square brackets, than the comma separated elements are mapped into the valueList e.g. '[user1,user2]' - maps the values 'user1' and 'user2' int the valueList. Also Curly brackets are allowed '{user1,user2}'- Parameter:
valueList-fieldList-
-
uniqueList
This method removes duplicates and null values from a vector.- Parameter:
valueList- - list of elements
-
mergeRoles
public void mergeRoles(List valueList, List sourceList, ItemCollection documentContext) throws PluginException This method merges the role names from a SourceList into a valueList and removes duplicates. The AddaptText event is fired so a client can adapt a role name.- Parameter:
valueList-sourceList-- Löst aus:
PluginException
-