Package | Description |
---|---|
com.whitestein.lsps.engine |
The package contains common classes for LSPS expression interpretation.
|
com.whitestein.lsps.engine.sharedrecord | |
com.whitestein.lsps.engine.state |
Contains implementation of persistent entities representing model data types.
|
com.whitestein.lsps.hibernate.envers | |
com.whitestein.lsps.human |
Services for accessing the functionality related to human-oriented processes.
|
com.whitestein.lsps.human.generation | |
com.whitestein.lsps.modulemanager | |
com.whitestein.lsps.modulemanager.dao | |
com.whitestein.lsps.modulemanager.dao.jpa | |
com.whitestein.lsps.modulemanager.entity |
Persistent entities for module manager
|
com.whitestein.lsps.orgstructure.modulemanager | |
com.whitestein.lsps.visualization |
This package contains classes used to convert process model into a diagram
representation.
|
com.whitestein.lsps.visualization.json |
This package contains classes which participates in the conversion of
Diagram into a JSON string. |
Modifier and Type | Method and Description |
---|---|
Module |
ModelProviderService.getModule(long id)
Returns a module for the given module id.
|
Module |
ModelProviderService.getModule(String hash)
Returns a model for the given hash.
|
Modifier and Type | Method and Description |
---|---|
Collection<Module> |
ModelProviderService.getModules(String name,
String version)
Returns a collection of modules for the given name and version.
|
Modifier and Type | Method and Description |
---|---|
void |
SharedRecordConfigurationServiceBean.rebuildConfiguration(Map<Module,com.whitestein.lsps.model.ProcessModel> newModels,
Set<com.whitestein.lsps.model.ProcessModel> removedModels) |
void |
SharedRecordConfigurationService.rebuildConfiguration(Map<Module,com.whitestein.lsps.model.ProcessModel> newModules,
Set<com.whitestein.lsps.model.ProcessModel> removedModules)
Rebuild singleton hibernate configuration for all modules currently loaded
into the memory.
|
Modifier and Type | Method and Description |
---|---|
Module |
ModelInstanceEntity.getModel()
Returns the model.
|
Modifier and Type | Method and Description |
---|---|
void |
ModelInstanceEntity.setModelInstance(Module model,
ModelInstance mi,
boolean createProperties)
Sets model instance.
|
Constructor and Description |
---|
ModelInstanceEntity(Module model,
ModelInstanceEntity parent,
Map<String,String> properties,
ModelInstanceType type,
ModelInstanceResourceAllocator idAllocator)
Creates new instance.
|
Modifier and Type | Method and Description |
---|---|
static org.hibernate.envers.configuration.AuditConfiguration |
LspsAuditConfiguration.getFor(Map<Module,com.whitestein.lsps.model.ProcessModel> newModels,
org.hibernate.cfg.Configuration cfg,
org.hibernate.service.classloading.spi.ClassLoaderService classLoaderService,
ModelProviderService modelProviderService) |
Constructor and Description |
---|
LspsAuditConfiguration(Map<Module,com.whitestein.lsps.model.ProcessModel> newModels,
org.hibernate.cfg.Configuration cfg,
org.hibernate.service.classloading.spi.ClassLoaderService classLoaderService,
ModelProviderService modelProviderService) |
LspsAuditConfiguration(Map<Module,com.whitestein.lsps.model.ProcessModel> newModels,
org.hibernate.cfg.Configuration cfg,
ModelProviderService modelProviderService) |
Modifier and Type | Method and Description |
---|---|
Module |
DocumentDefinitionServiceBean.getDocumentModule(String documentId) |
Module |
DocumentDefinitionService.getDocumentModule(String documentId)
Returns latest module in which the document is defined.
|
Modifier and Type | Method and Description |
---|---|
DocumentDefinition |
DocumentDefinitionServiceBean.getDocumentDefinition(String documentName,
Module module) |
DocumentDefinition |
DocumentDefinitionService.getDocumentDefinition(String documentName,
Module module)
Returns
DocumentDefinition with the specified name defined in a module. |
Modifier and Type | Method and Description |
---|---|
void |
DocumentPlugin.postUploadModule(Module module,
com.whitestein.lsps.model.ProcessModel processModel,
Map<String,String> properties) |
Modifier and Type | Method and Description |
---|---|
void |
DocumentPlugin.postUpload(Map<Module,com.whitestein.lsps.model.ProcessModel> modules,
Map<String,String> properties) |
Modifier and Type | Method and Description |
---|---|
Module |
ModelProviderServiceBean.getModule(long id) |
Module |
ModelProviderServiceBean.getModule(String hash) |
Modifier and Type | Method and Description |
---|---|
Collection<Module> |
ArchiveProcessorResult.getModules()
Returns all processed modules.
|
Collection<Module> |
ModelProviderServiceBean.getModules(String name,
String version) |
Collection<Module> |
ArchiveProcessorResult.getNewModules()
Returns only new modules.
|
Modifier and Type | Method and Description |
---|---|
static String |
ModuleConvertor.createUri(Module module,
ModuleEntry entry)
Returns the unique URI string of the given entry in the given module
|
static com.whitestein.lsps.generation.Source |
ModuleConvertor.getSource(ModuleEntry entry,
Module module)
Returns a source for the given entry.
|
static com.whitestein.lsps.generation.Sources |
ModuleConvertor.getSources(Module module)
Returns the map of the module sources
|
void |
ModelPersisterPlugin.postUploadModule(Module module,
com.whitestein.lsps.model.ProcessModel processModel,
Map<String,String> properties) |
void |
ModelManagerPlugin.postUploadModule(Module module,
com.whitestein.lsps.model.ProcessModel processModel,
Map<String,String> properties)
This method is called after a module is uploaded.
|
static Module |
EntityTransformer.transform(Module module,
boolean includeImports,
boolean includeEntries)
|
Modifier and Type | Method and Description |
---|---|
void |
ModelPersisterPlugin.postUpload(Map<Module,com.whitestein.lsps.model.ProcessModel> modules,
Map<String,String> properties) |
void |
ModelManagerPlugin.postUpload(Map<Module,com.whitestein.lsps.model.ProcessModel> modules,
Map<String,String> properties)
This method is called after each upload and the
moduleIds contain ids of all the
modules (even those which were already present in the repository before the upload). |
static List<Module> |
EntityTransformer.transformModules(Collection<Module> modules,
boolean includeImports,
boolean includeEntries)
|
Constructor and Description |
---|
ArchiveProcessorResult(Collection<Module> modules,
Collection<Module> newModules)
Creates new instance.
|
ArchiveProcessorResult(Collection<Module> modules,
Collection<Module> newModules)
Creates new instance.
|
Modifier and Type | Method and Description |
---|---|
Module |
ModelManagementDao.findModuleByHash(String hash)
Returns module with the given hash.
|
Module |
ModelManagementDao.findModuleById(long id)
Returns module for given id or null if module with given id does not exist.
|
Module |
ModelManagementDao.getLatestModule(String name)
Returns the latest module with a given name.
|
Modifier and Type | Method and Description |
---|---|
List<Module> |
ModelManagementDao.findImportingModules(long moduleId)
Returns all modules which import the given module.
|
List<Module> |
ModelManagementDao.getLatestModules(boolean ignoreVersion)
Returns the latest modules.
|
List<Module> |
ModelManagementDao.getLatestModulesWithName(boolean ignoreVersion,
String name)
Returns the latest modules with the name.
|
QueryResult<Module> |
ModelManagementDao.getModules(ModuleCriteria moduleCriteria)
Returns all models according to given criteria
|
Modifier and Type | Method and Description |
---|---|
void |
ModelManagementDao.addModule(Module module)
Adds a module.
|
Modifier and Type | Method and Description |
---|---|
Module |
JpaModelManagementDao.findModuleByHash(String hash) |
Module |
JpaModelManagementDao.findModuleById(long id) |
Module |
JpaModelManagementDao.getLatestModule(String name) |
Modifier and Type | Method and Description |
---|---|
List<Module> |
JpaModelManagementDao.findImportingModules(long moduleId) |
List<Module> |
JpaModelManagementDao.getLatestModules(boolean ignoreVersion) |
List<Module> |
JpaModelManagementDao.getLatestModulesWithName(boolean ignoreVersion,
String name) |
QueryResult<Module> |
JpaModelManagementDao.getModules(ModuleCriteria criteria) |
Modifier and Type | Method and Description |
---|---|
void |
JpaModelManagementDao.addModule(Module module) |
Modifier and Type | Method and Description |
---|---|
Module |
Process.getModule()
Returns the module.
|
Modifier and Type | Method and Description |
---|---|
Map<String,Module> |
Module.getAllImports()
Returns all module imports (direct and indirect) in a map indexed by module names.
|
Set<Module> |
Module.getModuleImports()
Returns a set of module imports.
|
Modifier and Type | Method and Description |
---|---|
void |
Module.addModuleImport(Module importedModule)
Adds a module import.
|
void |
Module.removeModuleImport(Module module)
Removes a module import.
|
Modifier and Type | Method and Description |
---|---|
void |
OrgModelPlugin.postUploadModule(Module module,
com.whitestein.lsps.model.ProcessModel processModel,
Map<String,String> properties) |
Modifier and Type | Method and Description |
---|---|
void |
OrgModelPlugin.postUpload(Map<Module,com.whitestein.lsps.model.ProcessModel> modules,
Map<String,String> properties) |
Constructor and Description |
---|
DiagramProvider(Module module,
Map<String,ElementRuntimeData> runtimeData)
Creates a new instance of this provider for the given module.
|
Modifier and Type | Method and Description |
---|---|
String |
ProcessDiagramJsonConverter.convert(Module module,
String diagramURI)
Converts the process model diagram into a JSON string.
|
String |
ProcessDiagramJsonConverter.convert(Module module,
String diagramURI,
Map<String,ElementRuntimeData> runtimeData)
Converts the process model diagram into a JSON string.
|
Copyright © 2007-2020 Whitestein Technologies. All Rights Reserved.