Package | Description |
---|---|
pase.server | |
pe.pase |
Modifier and Type | Method and Description |
---|---|
PASEartInstance |
ServerAPI.createArtInstance(java.lang.String aID)
Create artifact instance.
|
PASEartInstance |
ServerAPI.createArtInstance(java.lang.String tID,
java.lang.String aID)
Deprecated.
|
PASEartInstance |
ServerAPI.getArtInstance(java.lang.String iID)
Get artifact instance with current Task.
|
PASEartInstance |
ServerAPI.getArtInstance(java.lang.String iID,
java.lang.String tID)
Get artifact instance with the specified task.
|
Modifier and Type | Method and Description |
---|---|
boolean |
ServerAPI.setArtInsState(PASEartInstance artInstance,
java.lang.String stateID)
Set artifact instance state of the specified artifact instance.
|
boolean |
ServerAPI.updateArtInstance(PASEartInstance instance)
Update artifact instance
Notice: Artifact instance is carrying artifact state information.
|
boolean |
ServerAPI.updateArtInstance(java.lang.String tID,
PASEartInstance instance)
Deprecated.
Update artifact instance
|
boolean |
ServerAPI.updateArtInstanceLog(java.lang.String tID,
PASEartInstance instance)
Update artifact instance log
Examples:
var result = Server.updateArtInstanceLog(tID,artInstance);
|
Modifier and Type | Field and Description |
---|---|
protected java.util.Vector<PASEartInstance> |
Task.oprInstanceList |
protected java.util.Vector<PASEartInstance> |
Task.refInstanceList |
Modifier and Type | Method and Description |
---|---|
PASEartInstance |
BasedClientAPI.createArtInstance(java.lang.String aID) |
PASEartInstance |
ClientAPI.createArtInstance(java.lang.String aID)
Create artifact instance.
|
PASEartInstance |
FlowService.createArtInstance(java.lang.String aID)
Create artifact instance
|
PASEartInstance |
ServerService.createArtInstance(java.lang.String aID)
Create artifact instance
|
PASEartInstance |
BasedClientAPI.createArtInstance(java.lang.String tID,
java.lang.String aID) |
PASEartInstance |
ClientAPI.createArtInstance(java.lang.String tID,
java.lang.String aID)
Deprecated.
|
PASEartInstance |
FlowService.createArtInstance(java.lang.String tID,
java.lang.String aID)
Deprecated.
Create artifact instance
|
PASEartInstance |
ServerService.createArtInstance(java.lang.String tID,
java.lang.String aID)
Deprecated.
Create artifact instance
|
PASEartInstance |
BasedClientAPI.createFreqArtInstance(java.lang.String aID) |
PASEartInstance |
FlowService.createFreqArtInstance(java.lang.String aID)
Create artifact instance, for FreqAp use
|
PASEartInstance |
ServerService.createFreqArtInstance(java.lang.String aID)
Create artifact instance, for FreqAp use
|
PASEartInstance |
FormAPI.getArtInstance()
Returns the current artifact instance by which the form is operated.
|
PASEartInstance |
Task.getArtInstance()
Get the operation artifact
|
PASEartInstance |
BasedClientAPI.getArtInstance(java.lang.String iID) |
PASEartInstance |
ClientAPI.getArtInstance(java.lang.String iID)
Get artifact instance by the specified instance id.
|
PASEartInstance |
FlowService.getArtInstance(java.lang.String iID)
Return a data object of artifact instance with current Task
|
PASEartInstance |
ServerService.getArtInstance(java.lang.String iID)
Return a data object of artifact instance with current Task
|
PASEartInstance |
BasedClientAPI.getArtInstance(java.lang.String iID,
java.lang.String tID) |
PASEartInstance |
ClientAPI.getArtInstance(java.lang.String iID,
java.lang.String tID)
Get artifact instance with the specified instance id and task id.
|
PASEartInstance |
FlowService.getArtInstance(java.lang.String iID,
java.lang.String tID)
Return a data object of artifact instance with specific task
|
PASEartInstance |
ServerService.getArtInstance(java.lang.String iID,
java.lang.String tID)
Return a data object of artifact instance with specific task
|
Modifier and Type | Method and Description |
---|---|
java.util.Vector<PASEartInstance> |
Task.getOprArtifactList()
Get the lists of operation artifact
|
java.util.Vector<PASEartInstance> |
Task.getRefArtifactList()
Get the lists of reference artifact
|
Modifier and Type | Method and Description |
---|---|
void |
Task.addOprArtifact(PASEartInstance aIns)
Add a operation artifact
|
void |
Task.addRefArtifact(PASEartInstance aIns)
Add a reference artifact
|
boolean |
Task.removeOprArtifact(PASEartInstance aIns)
Remove a operation artifact
|
boolean |
Task.removeRefArtifact(PASEartInstance aIns)
Remove a reference artifact
|
boolean |
BasedClientAPI.setArtInsState(PASEartInstance artInstance,
java.lang.String stateID) |
boolean |
ClientAPI.setArtInsState(PASEartInstance artInstance,
java.lang.String stateID)
Set artifact instance state.
|
boolean |
FlowService.setArtInsState(PASEartInstance artInstance,
java.lang.String stateID)
Return true for success, else false
|
boolean |
ServerService.setArtInsState(PASEartInstance artInstance,
java.lang.String stateID)
Return true for success, else false
|
void |
Task.setArtInstance(PASEartInstance aIns)
Set the operation artifact
|
boolean |
BasedClientAPI.updateArtInstance(PASEartInstance instance) |
boolean |
ClientAPI.updateArtInstance(PASEartInstance instance)
Update artifact instance
Notice: Artifact instance is carrying artifact state information.
|
boolean |
FlowService.updateArtInstance(PASEartInstance instance)
Update artifact instance Notice: Artifact instance is carrying artifact
state information.
|
boolean |
ServerService.updateArtInstance(PASEartInstance instance)
Update artifact instance
|
boolean |
BasedClientAPI.updateArtInstance(java.lang.String tID,
PASEartInstance instance) |
boolean |
ClientAPI.updateArtInstance(java.lang.String tID,
PASEartInstance instance)
Deprecated.
|
boolean |
FlowService.updateArtInstance(java.lang.String taskId,
PASEartInstance instance)
Deprecated.
|
boolean |
ServerService.updateArtInstance(java.lang.String tID,
PASEartInstance instance)
Deprecated.
Update artifact instance
|
boolean |
BasedClientAPI.updateArtInstanceLog(java.lang.String tID,
PASEartInstance instance) |
boolean |
ClientAPI.updateArtInstanceLog(java.lang.String tID,
PASEartInstance instance)
Update artifact instance log
Examples:
var task = Form.getCurrentTask();
var artInstance = task.getArtInstance();
var flag = Client.updateArtInstanceLog(task.getID(), artInstance);
|
boolean |
FlowService.updateArtInstanceLog(java.lang.String taskId,
PASEartInstance instance)
Update artifact instance log
|
boolean |
ServerService.updateArtInstanceLog(java.lang.String tID,
PASEartInstance instance)
Update artifact instance log
|
Modifier and Type | Method and Description |
---|---|
void |
Task.setOprArtifactList(java.util.Vector<PASEartInstance> list)
Set the lists of operation artifact
|
void |
Task.setRefArtifactList(java.util.Vector<PASEartInstance> list)
Set the lists of reference artifact
|
Copyright ? 2022. All Rights Reserved.