Interface ParameterService

All Known Implementing Classes:
ParameterServiceImpl

public interface ParameterService
Since:
6.0
Author:
Matthieu Chaffotte
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    addAll(long processDefinitionId, Map<String,String> parameters)
    Store all parameters provided to the specific process in file system
    boolean
    containsNullValues(long processDefinitionId)
    Check if the specific process contains null-valued parameter or not.
    void
    deleteAll(long processDefinitionId)
    Delete all parameters for a specific processDefinition
    get(long processDefinitionId, int fromIndex, int numberOfResult, OrderBy order)
    Get parameters in a specific interval for specific process, this is used for pagination
    get(long processDefinitionId, String parameterName)
    Get parameter by name in specific process
    getAll(long processDefinitionId)
    return all parameters in a map
    getNullValues(long processDefinitionId, int fromIndex, int numberOfResult, OrderBy order)
    Get a list of parameters will null values in order in specific process
    void
    merge(long processDefinitionId, Map<String,String> parameters)
    Merge given parameters with existing ones.
    void
    update(long processDefinitionId, String parameterName, String parameterValue)
    Update specific parameter value in a process