| Package | Description | 
|---|---|
| com.edorasware.api.value | 
 Work object value access. 
 | 
| com.edorasware.api.workobject | 
 Interfaces for work object access and manipulation. 
 | 
| com.edorasware.cloud.core.json | |
| com.edorasware.commons.core.any | 
 Classes for generic work object management. 
 | 
| com.edorasware.commons.core.any.internal | |
| com.edorasware.commons.core.service.entity | 
 Classes related to entity services. 
 | 
| com.edorasware.gear.core.process | |
| com.edorasware.gear.core.workobject.internal | |
| com.edorasware.one.entitytemplate | |
| com.edorasware.one.rest.manager | |
| com.edorasware.one.rest.manager.internal | |
| com.edorasware.publicapi.rest | 
| Modifier and Type | Method and Description | 
|---|---|
ValueMap | 
ValueMap.Builder.build()
Builds the new value map. 
 | 
ValueMap | 
ValueMap.filter(Predicate<Map.Entry<String,Object>> predicate)
Filers values in the instance based on the input predicate 
 | 
static ValueMap | 
ValueMap.of()
Creates an empty value map. 
 | 
static ValueMap | 
ValueMap.of(Map<String,Object> values)
Creates a value map from the given serialized values. 
 | 
static ValueMap | 
ValueMap.of(String name,
  Object value)
Creates a new value map from the given name/value pair. 
 | 
static ValueMap | 
ValueMap.of(String name1,
  Object value1,
  String name2,
  Object value2)
Creates a new value map from the given name/value pairs. 
 | 
static ValueMap | 
ValueMap.of(String name1,
  Object value1,
  String name2,
  Object value2,
  String name3,
  Object value3)
Creates a new value map from the given name/value pairs. 
 | 
static <V> ValueMap | 
ValueMap.of(ValueAccessor<V> valueAccessor,
  V value)
Creates a new value map from the given name/value pair. 
 | 
static <V1,V2> ValueMap | 
ValueMap.of(ValueAccessor<V1> accessor1,
  V1 value1,
  ValueAccessor<V2> accessor2,
  V2 value2)
Creates a new value map from the given name/value pairs. 
 | 
static <V1,V2,V3> ValueMap | 
ValueMap.of(ValueAccessor<V1> accessor1,
  V1 value1,
  ValueAccessor<V2> accessor2,
  V2 value2,
  ValueAccessor<V3> accessor3,
  V3 value3)
Creates a new value map from the given name/value pairs. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ValueMap.Builder | 
ValueMap.builder(ValueMap template)
Creates a builder for a new value map instance from the given template map. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
ValueMap | 
WorkObjectValueGetters.getValues()
Returns a value map containing all values set on the work object. 
 | 
ValueMap | 
UpdateWorkObjectDecoratorContext.getWorkObjectData()  | 
ValueMap | 
CreateWorkObjectDecoratorContext.getWorkObjectData()  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
UpdateWorkObjectDecoratorContext.setWorkObjectData(ValueMap workObjectData)  | 
void | 
CreateWorkObjectDecoratorContext.setWorkObjectData(ValueMap workObjectData)  | 
SELF | 
WorkObjectValueSetters.values(ValueMap valueMap)
Sets the values provided in the given variable map. 
 | 
| Constructor and Description | 
|---|
CreateWorkObjectDecoratorContext(String definitionId,
                                String parentId,
                                ValueMap workObjectData,
                                String userId)  | 
UpdateWorkObjectDecoratorContext(WorkObject currentWorkObject,
                                ValueMap workObjectData,
                                WorkObjectUpdateBuilder updateBuilder,
                                String userId)  | 
UpdateWorkObjectDecoratorContext(WorkObject currentWorkObject,
                                ValueMap workObjectData,
                                WorkObjectUpdateBuilder updateBuilder,
                                WorkObject updatedWorkObject,
                                String userId)  | 
| Modifier and Type | Method and Description | 
|---|---|
ValueMap | 
ValueMapDeserializer.deserialize(com.fasterxml.jackson.core.JsonParser jsonParser,
           com.fasterxml.jackson.databind.DeserializationContext deserializationContext)  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
ValueMapSerializer.serialize(ValueMap value,
         com.fasterxml.jackson.core.JsonGenerator gen,
         com.fasterxml.jackson.databind.SerializerProvider provider)  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
AnyWorkObjectService.putVariables(String id,
            ValueMap variables,
            String description)
Associates the given variables with the specified entity. 
 | 
AnyWorkObject.Builder | 
AnyWorkObject.Builder.putVariables(ValueMap variables)
Adds the name/value pairs as variables to the current variables. 
 | 
AnyWorkObjectModification.Builder | 
AnyWorkObjectModification.Builder.putVariables(ValueMap variables)  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
DefaultAnyWorkObjectService.putVariables(String entityId,
            ValueMap variables,
            String description)  | 
| Modifier and Type | Method and Description | 
|---|---|
GearWorkObjectUpdate.Builder | 
GearWorkObjectUpdate.Builder.putVariables(ValueMap variables)
Sets new variable values. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static String | 
ProcessUtils.startProcessForLatestVersionOfProcessDefinitionWithKey(String key,
                                                      ValueMap variables,
                                                      AnyWorkObjectDefinitionService definitionService,
                                                      AnyWorkObjectService anyWorkObjectService)  | 
static String | 
ProcessUtils.startProcessForLatestVersionOfProcessDefinitionWithKey(String key,
                                                      ValueMap variables,
                                                      String parentId,
                                                      AnyWorkObjectDefinitionService definitionService,
                                                      AnyWorkObjectService anyWorkObjectService)  | 
| Modifier and Type | Method and Description | 
|---|---|
ValueMap | 
WorkObjectUpdateBuilderImpl.getValues()  | 
| Modifier and Type | Method and Description | 
|---|---|
WorkObjectBuilder | 
WorkObjectBuilderImpl.values(ValueMap variableMap)  | 
SELF | 
BaseUpdateBuilder.values(ValueMap valueMap)  | 
| Modifier and Type | Method and Description | 
|---|---|
ValueMap | 
EntityTemplate.toValueMap()  | 
| Modifier and Type | Method and Description | 
|---|---|
ValueMap | 
WorkObjectManager.getWorkObject(String ambiguousId,
             ViewFilter view,
             Collection<String> fields,
             String... expectedTypes)
Find the work object by ambiguousId 
 | 
ValueMap | 
WorkObjectDefinitionManager.getWorkObjectDefinition(String workObjectDefinitionId,
                       DefinitionViewFilter definitionViewFilter,
                       Collection<String> fields,
                       String... allowedTypes)
Gets the definition by id 
 | 
| Modifier and Type | Method and Description | 
|---|---|
List<ValueMap> | 
CaseManager.getCaseMilestones(String caseWorkObjectId)
Returns milestones for the given case work object id 
 | 
List<ValueMap> | 
CaseManager.getCaseStates(String caseWorkObjectId)
Returns stages for the given case work object id 
 | 
List<ValueMap> | 
QueryResponse.getData()  | 
| Modifier and Type | Method and Description | 
|---|---|
WorkObject | 
WorkObjectManager.createWorkObject(String typeParam,
                ValueMap workObjectData)
Creates work object 
 | 
WorkObject | 
WorkObjectManager.updateWorkObject(String type,
                String workObjectId,
                ValueMap workObjectData)
Updates given values on the work object instance 
 | 
| Constructor and Description | 
|---|
QueryResponse(List<ValueMap> data,
             long total,
             long start,
             int size)  | 
| Modifier and Type | Method and Description | 
|---|---|
ValueMap | 
DefaultWorkObjectManager.getWorkObject(String workObjectAmbiguousId,
             ViewFilter view,
             Collection<String> fields,
             String... expectedTypes)  | 
ValueMap | 
DefaultWorkObjectDefinitionManager.getWorkObjectDefinition(String workObjectDefinitionId,
                       DefinitionViewFilter definitionViewFilter,
                       Collection<String> fields,
                       String... allowedTypes)  | 
| Modifier and Type | Method and Description | 
|---|---|
List<ValueMap> | 
DefaultCaseManager.getCaseMilestones(String caseWorkObjectId)  | 
List<ValueMap> | 
DefaultCaseManager.getCaseStates(String caseWorkObjectId)  | 
| Modifier and Type | Method and Description | 
|---|---|
WorkObject | 
DefaultWorkObjectManager.createWorkObject(String typeParam,
                ValueMap workObjectData)  | 
WorkObject | 
DefaultWorkObjectManager.updateWorkObject(String type,
                String workObjectId,
                ValueMap workObjectData)  | 
| Modifier and Type | Method and Description | 
|---|---|
ValueMap | 
TaskController.create(String data,
      String view,
      List<String> fields)  | 
ValueMap | 
DocumentController.create(String data,
      String view,
      List<String> fields)  | 
ValueMap | 
ProcessController.create(String data,
      String view,
      List<String> fields)  | 
ValueMap | 
CaseController.create(String data,
      String view,
      List<String> fields)  | 
ValueMap | 
WorkObjectController.create(String data,
      String view,
      List<String> fields)  | 
ValueMap | 
ModelItemController.getAppModel(String abiguousAppModelId,
           String view,
           List<String> fields)  | 
ValueMap | 
ModelItemController.getCaseModel(String ambiguousCaseModelId,
            String view,
            List<String> fields)  | 
ValueMap | 
ModelItemController.getDocumentModel(String ambiguousDocumentModelId,
                String view,
                List<String> fields)  | 
ValueMap | 
CaseDefinitionController.getInstance(String workObjectDefinitionId,
           String view,
           List<String> fields)
Returns the case definitions matching the id. 
 | 
ValueMap | 
WorkObjectDefinitionController.getInstance(String workObjectDefinitionId,
           String view,
           List<String> fields)
Returns the work object definitions matching the id. 
 | 
ValueMap | 
ProcessDefinitionController.getInstance(String workObjectDefinitionId,
           String view,
           List<String> fields)
Returns the process definitions matching the id. 
 | 
ValueMap | 
FormDefinitionController.getInstance(String workObjectDefinitionId,
           String view,
           List<String> fields)
Returns the form definitions matching the id. 
 | 
ValueMap | 
TaskController.getInstance(String ambiguousWorkObjectId,
           String view,
           List<String> fields)  | 
ValueMap | 
DocumentController.getInstance(String ambiguousWorkObjectId,
           String view,
           List<String> fields)  | 
ValueMap | 
ProcessController.getInstance(String ambiguousWorkObjectId,
           String view,
           List<String> fields)  | 
ValueMap | 
CaseController.getInstance(String ambiguousWorkObjectId,
           String view,
           List<String> fields)  | 
ValueMap | 
TaskDefinitionController.getInstance(String workObjectDefinitionId,
           String view,
           List<String> fields)
Returns the task definitions matching the id. 
 | 
ValueMap | 
DocumentDefinitionController.getInstance(String workObjectDefinitionId,
           String view,
           List<String> fields)
Returns the document definitions matching the id. 
 | 
ValueMap | 
WorkObjectController.getInstance(String ambiguousWorkObjectId,
           String view,
           List<String> fields)  | 
ValueMap | 
ModelItemController.getProcessModel(String ambiguousProcessModelId,
               String view,
               List<String> fields)  | 
ValueMap | 
ModelItemController.getTaskModel(String ambiguousTaskModelId,
            String view,
            List<String> fields)  | 
ValueMap | 
TaskController.update(String workObjectId,
      String data,
      String view,
      List<String> fields)  | 
ValueMap | 
DocumentController.update(String workObjectId,
      String data,
      String view,
      List<String> fields)  | 
ValueMap | 
ProcessController.update(String workObjectId,
      String data,
      String view,
      List<String> fields)  | 
ValueMap | 
CaseController.update(String workObjectId,
      String data,
      String view,
      List<String> fields)  | 
ValueMap | 
WorkObjectController.update(String workObjectId,
      String data,
      String view,
      List<String> fields)  | 
Copyright © 2010 - 2018 edorasware ag. All Rights Reserved.