📄 netbpm.xml
字号:
<summary> serializes the value of an {@link NetBpm.Workflow.Execution.IAttributeInstance}
to store it in the database.
</summary>
<param name="text">text, previously generated by the serialize-method and stored in the database.
</param>
<returns> the java-object that represents the value for the {@link NetBpm.Workflow.Execution.IAttributeInstance}
</returns>
<returns> IllegalArgumentException if object is not deserializable by this serializer
</returns>
</member>
<member name="T:NetBpm.Workflow.Delegation.Impl.ActorExpressionResolver">
<summary> resolves an expression to a user or a group using the following syntax :
<p>The general syntax is firstArgument->nextArgument->nextArgument->...->nextArgument
</p>
<p>For the firstArgument, following constructions are valid :
<ul>
<li><b>previousActor</b> : </li>
<li><b>processInitiator</b> : </li>
<li><b>actor( <actorName> )</b> : </li>
<li><b>role( <attributeName> )</b> : </li>
<li><b>user( <userName> )</b> : </li>
<li><b>group( <groupName> )</b> : </li>
</ul>
</p>
<p>For the nextArgument's, following constructions are valid :
<ul>
<li><b>[User]->group( <membership-type> )</b> results in a Group</li>
<li><b>[Group]->role( <role> )</b> results in a User</li>
<li><b>[Group]->parentGroup</b> results in a Group</li>
</ul>
</p>
</summary>
</member>
<member name="P:NetBpm.Workflow.Delegation.Impl.ActorExpressionResolver.Instance">
<summary> gets the singleton instance.</summary>
</member>
<member name="P:NetBpm.Workflow.Delegation.Impl.AuthorizationHelper.Instance">
<summary> gets the singleton instance.</summary>
</member>
<member name="T:NetBpm.Workflow.Delegation.Impl.DelegationImpl">
<summary> manages all information for one delegation.</summary>
</member>
<member name="T:NetBpm.Workflow.Delegation.IActionContext">
<summary> allows the Interaction-implementor to interact with and get information from
the process engine.
</summary>
</member>
<member name="T:NetBpm.Workflow.Delegation.IHandlerContext">
<summary> super interface for all handler context's. HandlerContext's provide handler-implementations with a means
of interaction with the process engine.
</summary>
</member>
<member name="M:NetBpm.Workflow.Delegation.IHandlerContext.GetConfiguration">
<summary> gets the configuration, specified with the 'parameter'-tags in the process archive.</summary>
</member>
<member name="M:NetBpm.Workflow.Delegation.IHandlerContext.GetProcessDefinition">
<summary> gets the {@link ProcessDefinition}.</summary>
</member>
<member name="M:NetBpm.Workflow.Delegation.IHandlerContext.GetProcessInstance">
<summary> gets the {@link ProcessInstance}.</summary>
</member>
<member name="M:NetBpm.Workflow.Delegation.IHandlerContext.GetFlow">
<summary> gets the {@link Flow} in which this delegation is executed. </summary>
</member>
<member name="M:NetBpm.Workflow.Delegation.IHandlerContext.GetNode">
<summary> gets the {@link Node} in which this delegation is executed.</summary>
</member>
<member name="M:NetBpm.Workflow.Delegation.IHandlerContext.GetAttribute(System.String)">
<summary> gets the value of an {@link AttributeInstance} associated with this {@link ProcessInstance}.</summary>
</member>
<member name="M:NetBpm.Workflow.Delegation.IHandlerContext.AddLog(System.String)">
<summary> allows the Delegate-implementations to log events to the database.</summary>
</member>
<member name="M:NetBpm.Workflow.Delegation.IActionContext.GetFlow">
<summary> gets the {@link Flow} in which the {@link Action} is executed.</summary>
</member>
<member name="M:NetBpm.Workflow.Delegation.IActionContext.SetAttribute(System.String,System.Object)">
<summary> sets the {@link AttributeInstance} for the attribute with name attributeName to the
value attributeValue.
</summary>
</member>
<member name="T:NetBpm.Workflow.Delegation.IAssignmentContext">
<summary> allows the Assigner-implementator to interact with and get information from
the process execution engine.
</summary>
</member>
<member name="M:NetBpm.Workflow.Delegation.IAssignmentContext.GetOrganisationComponent">
<summary> since Assigner-implementations tend to use the organisation-component
this is a convenient way to get it.
</summary>
</member>
<member name="M:NetBpm.Workflow.Delegation.IAssignmentContext.GetNode">
<summary> gets the {@link ActivityState} for which an {@link Actor} has to be selected. </summary>
</member>
<member name="M:NetBpm.Workflow.Delegation.IAssignmentContext.GetPreviousActor">
<summary> gets the {@link Actor} that performed the previous activity-state.</summary>
</member>
<member name="T:NetBpm.Workflow.Delegation.IAuthorizationHandler">
<summary> verifies if an authenticated user has enough privileges. An AuthorizationHandler
can be specified on the level of a process definition. All method-calls to
the admin and execution component that are related to that process definition
will call the AuthorizationHandler to validate authorization.
</summary>
</member>
<member name="T:NetBpm.Workflow.Delegation.IDecisionContext">
<summary> allows Decision-implementators to interact with and get information from
the execution engine.
</summary>
</member>
<member name="T:NetBpm.Workflow.Delegation.IForkContext">
<summary> allows a Forker-implementor to interact with ant get information
from the process engine.
</summary>
</member>
<member name="T:NetBpm.Workflow.Delegation.IJoinContext">
<summary> allows a Joiner-implementor to interact with and get information from
the execution engine.
</summary>
</member>
<member name="M:NetBpm.Workflow.Delegation.IJoinContext.GetOtherActiveConcurrentFlows">
<summary> gets all active concurrent flows other then the one
that is actually arriving in the join.
</summary>
</member>
<member name="T:NetBpm.Workflow.Delegation.IProcessInvocationContext">
<summary> allows a ProcessInvocationHandler-implementor to interact with and get
information from the execution engine.
</summary>
</member>
<member name="M:NetBpm.Workflow.Delegation.IProcessInvocationContext.GetInvokedProcessContext">
<summary> gets the ActionContext for the invoked process instance;</summary>
</member>
<member name="T:NetBpm.Workflow.Delegation.IProcessInvocationHandler">
<summary> handles the launching and the processing of the results of a sub-process inside an activity.</summary>
</member>
<member name="M:NetBpm.Workflow.Delegation.IProcessInvocationHandler.GetStartTransitionName(NetBpm.Workflow.Delegation.IProcessInvocationContext)">
<summary> specifies which transition of the sub-process needs to be taken from the start-state.</summary>
</member>
<member name="M:NetBpm.Workflow.Delegation.IProcessInvocationHandler.GetStartAttributeValues(NetBpm.Workflow.Delegation.IProcessInvocationContext)">
<summary> fills the fields in the subProcessStartActivityForm when the sub-process-activity is entered.
Before this method is called, the NetBpm-system has started a process instance of the sub-process.
The created process instance is therefor in the start-activity. The form of the start-activity
has to be filled in this method. After this method is finished, the NetBpm-system will perform the start-activity.
The flow of the parent process instance is blocked until the sub-process is finished.
</summary>
<param name="processInvokerContext">is the object that allows the ProcessInvocationHandler-implementator to communicate with the NetBpm process engine.
</param>
<returns> the fieldValues that will be used to perform the start-activity of the invoked process.
</returns>
</member>
<member name="M:NetBpm.Workflow.Delegation.IProcessInvocationHandler.CollectResults(NetBpm.Workflow.Delegation.IProcessInvocationContext)">
<summary> collects the data from the sub-process and feeds it in the parent-process.
After this method is finished, the activity is considered finished and the
original flow is activated again.
</summary>
<param name="processInvocationContext">is the object that allows the ProcessInvocationHandler-implementator to communicate with the NetBpm process engine.
</param>
</member>
<member name="M:NetBpm.Workflow.Delegation.IProcessInvocationHandler.GetCompletionTransitionName(NetBpm.Workflow.Delegation.IProcessInvocationContext)">
<summary> specifies which transition of the parent-process needs to be taken after
completion of the sub-process.
</summary>
</member>
<member name="M:NetBpm.Workflow.Execution.EComp.IExecutionSessionLocal.GetTaskList">
<summary> collects all {@link NetBpm.Workflow.Execution.IFlow}s for which the authenticated
user has to perform an activity.
</summary>
<returns> a Collection of {@link NetBpm.Workflow.Execution.IFlow}s which are
assigned to the <a href="#authentication">user calling this method</a>.
</returns>
</member>
<member name="M:NetBpm.Workflow.Execution.EComp.IExecutionSessionLocal.GetTaskList(NetBpm.Util.Client.Relations)">
<summary> collects all {@link NetBpm.Workflow.Execution.IFlow}s for which the authenticated
user has to perform an activity.
</summary>
<param name="relations">specifies which {@link Relations} should be resolved in the
returned {@link NetBpm.Workflow.Execution.IFlow}s
</param>
<returns> a Collection of {@link NetBpm.Workflow.Execution.IFlow}s which are
assigned to the <a href="#authentication">authenticated user</a>.
</returns>
</member>
<member name="M:NetBpm.Workflow.Execution.EComp.IExecutionSessionLocal.GetTaskList(System.String)">
<summary> collects all {@link NetBpm.Workflow.Execution.IFlow}s for which the given
actor has to perform an activity.
</summary>
<param name="actorId">the actor id
</param>
<returns> a Collection of {@link NetBpm.Workflow.Execution.IFlow}s which are
assigned to the <a href="#authentication">{@link Nbpm.Workflow.Organisation.IActor}
({@link Nbpm.Workflow.Organisation.IUser} or {@link Nbpm.Workflow.Organisation.IGroup}
calling this method</a>.
</returns>
</member>
<member name="M:NetBpm.Workflow.Execution.EComp.IExecutionSessionLocal.GetTaskList(System.String,NetBpm.Util.Client.Relations)">
<summary> collects all {@link NetBpm.Workflow.Execution.IFlow}s for which the given
actor has to perform an activity.
</summary>
<param name="relations">specifies which {@link Relations} should be resolved in the
returned {@link NetBpm.Workflow.Execution.IFlow}s
</param>
<param name="actorId">the actor id
</param>
<returns> a Collection of {@link NetBpm.Workflow.Execution.IFlow}s which are
assigned to the <a href="#authentication">{@link Nbpm.Workflow.Organisation.IActor}
({@link Nbpm.Workflow.Organisation.IUser} or {@link Nbpm.Workflow.Organisation.IGroup}
calling this method</a>.
</returns>
</member>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -