Package ch.ivyteam.ivy.application
Interface IProcessModel
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description IProcessModelVersioncreateProcessModelVersion(String name, String description, String projectName, int numberOfProcessElements, String createdByUser, String createdFromHost)Creates a new process model versionIProcessModelVersioncreateProcessModelVersion(String name, String description, String createdByUser, String createdFromHost, int version)Creates a new process model versionstatic IProcessModelcurrent()Gets the current process model.IProcessModelVersionfindProcessModelVersion(int versionNumber)Gets the process model version with the version numberIProcessModelVersionfindProcessModelVersionByIdentifier(long versionId)Gets the process model version with the given version idIApplicationgetApplication()Gets the web application this version belongs to.StringgetDescription()Returns the descriptionStringgetFileDirectory()Gets the file directory of the process modellonggetId()Returns the process model identifierActivityStategetInheritedActivityState()Gets the inherited activity state.StringgetName()Returns the process model nameList<IProcessModelVersion>getProcessModelVersions()Gets the process model versionsIProcessModelVersiongetReleasedProcessModelVersion()Gets the process model version which is in state RELEASED.booleanisDeletable()Checks if the process model can be deleted safely without throwing an exception.voidsetDescription(String description)Sets the description-
Methods inherited from interface ch.ivyteam.ivy.application.IActivity
activate, deactivate, getActivityOperationState, getActivityState, lock
-
-
-
-
Method Detail
-
getName
String getName()
Returns the process model name- Returns:
- name of process model
- Throws:
PersistencyException- if persistency access fails- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
getDescription
String getDescription()
Returns the description- Returns:
- description
- Throws:
PersistencyException- if persistency access fails- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
setDescription
void setDescription(String description)
Sets the description- Parameters:
description- the description of the process model- Throws:
PersistencyException- if persistency access fails- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
- Security:
- SESSION OWNS ProcessModelWriteDescription PERMISSION OR OWNS ProcessModelWriteDescription@SYSTEM PERMISSION
-
getId
long getId()
Returns the process model identifier- Returns:
- process model identifier
- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
createProcessModelVersion
IProcessModelVersion createProcessModelVersion(String name, String description, String projectName, int numberOfProcessElements, String createdByUser, String createdFromHost)
Creates a new process model version- Parameters:
name- name of the versiondescription- description of the versionprojectName- name of the project that holds the resource of this process model version. Must be a unique name in the whole systemnumberOfProcessElements- number of elements the version hascreatedByUser- Name of the user who creates the versioncreatedFromHost- Name of the host from where the version is uploaded- Returns:
- new created process model version
- Throws:
PersistencyException- if db access fails- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
- Security:
- SESSION OWNS ProcessModelVersionCreate PERMISSION OR OWNS ProcessModelVersionCreate@SYSTEM PERMISSION
-
createProcessModelVersion
IProcessModelVersion createProcessModelVersion(String name, String description, String createdByUser, String createdFromHost, int version)
Creates a new process model version- Parameters:
name- name of the versiondescription- description of the versioncreatedByUser- Name of the user who creates the versioncreatedFromHost- Name of the host from where the version is uploadedversion- version of the process model to be created- Returns:
- new created process model version
- Throws:
PersistencyException- if db access failsIllegalArgumentException- if aIProcessModelVersionwithversionalready exists.- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
- Security:
- SESSION OWNS ProcessModelVersionCreate PERMISSION OR OWNS ProcessModelVersionCreate@SYSTEM PERMISSION
-
getProcessModelVersions
List<IProcessModelVersion> getProcessModelVersions()
Gets the process model versions- Returns:
- unmodifiable list of process model versions
- Throws:
PersistencyException- if persistency access fails- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
findProcessModelVersion
IProcessModelVersion findProcessModelVersion(int versionNumber)
Gets the process model version with the version number- Parameters:
versionNumber- the version number- Returns:
- process model version or null if no version has this version number.
- Throws:
PersistencyException- if persistency access fails- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
findProcessModelVersionByIdentifier
IProcessModelVersion findProcessModelVersionByIdentifier(long versionId)
Gets the process model version with the given version id- Parameters:
versionId- the version id- Returns:
- process model version or null if no version has this id
- Throws:
PersistencyException- if persistency access fails- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
getReleasedProcessModelVersion
IProcessModelVersion getReleasedProcessModelVersion()
Gets the process model version which is in state RELEASED.- Returns:
- process model version or null if no version is RELEASED.
- Throws:
PersistencyException- if persistency access fails- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
getFileDirectory
String getFileDirectory()
Gets the file directory of the process model- Returns:
- file directory of the process model
- Throws:
PersistencyException- if persistency access fails- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
getApplication
IApplication getApplication()
Gets the web application this version belongs to.- Returns:
- web application
- Throws:
PersistencyException- if persistency access fails- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
getInheritedActivityState
ActivityState getInheritedActivityState()
Gets the inherited activity state. This activity state is computed out of the application, process model and process model version activity state- Returns:
- inherited activity state
- Throws:
PersistencyException- if persistency access fails- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
isDeletable
boolean isDeletable()
Checks if the process model can be deleted safely without throwing an exception. This can happen if the process model has process model versions with active dependent process model versions.- Returns:
trueif process model can be deleted,falseif not- Since:
- 9.2
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
current
static IProcessModel current()
Gets the current process model.
Will return null if called out of scope. The scope is set if you call this method from an ivy process or any supported ivy environment. It is not set in non supported ivy environments (e.g. if you start your own threads, etc.).
- Returns:
- current process model or null if out of scope
- Since:
- 9.1
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
-