Package | Description |
---|---|
org.alfresco.mobile.android.api.model.impl |
Implementation of all high level object.
|
org.alfresco.mobile.android.api.services |
Provides all services available (those services must call in an asynchronous way (background task..) ).
|
org.alfresco.mobile.android.api.services.impl |
Implementation of all services.
|
org.alfresco.mobile.android.api.services.impl.onpremise |
Implementation of alfresco services for onPremise instance..
|
org.alfresco.mobile.android.api.services.impl.publicapi |
Modifier and Type | Class and Description |
---|---|
class |
TaskImpl |
Modifier and Type | Method and Description |
---|---|
static Task |
TaskImpl.parseJson(Map<String,Object> json)
Parse Json Response from Alfresco REST API to create a Task Object.
|
static Task |
TaskImpl.parsePublicAPIJson(Map<String,Object> json) |
static Task |
TaskImpl.refreshTask(Task task,
Map<String,Property> properties) |
Modifier and Type | Method and Description |
---|---|
static Task |
TaskImpl.refreshTask(Task task,
Map<String,Property> properties) |
Modifier and Type | Method and Description |
---|---|
Task |
WorkflowService.claimTask(Task task)
Claiming a task is done by one of the candidates of a task, task owner or
process-initiator
|
Task |
WorkflowService.completeTask(Task task,
Map<String,Serializable> variables)
Completing a task.
|
Task |
WorkflowService.getTask(String taskIdentifier)
Retrieves a single task by its id.
|
Task |
WorkflowService.reassignTask(Task task,
Person assignee)
Reassign the task from the owner to an assignee
|
Task |
WorkflowService.refresh(Task task)
Returns the latest (and complete) variables for the provided task.
|
Task |
WorkflowService.unclaimTask(Task task)
This removes the assignee of the task i.e the current user.
|
Task |
WorkflowService.updateVariables(Task task,
Map<String,Serializable> variables)
Update the variables for a given process.
|
Modifier and Type | Method and Description |
---|---|
List<Task> |
WorkflowService.getTasks()
Returns a list of task in progress for the current user.
|
PagingResult<Task> |
WorkflowService.getTasks(ListingContext listingContext)
Returns a list of tasks that the authenticated user is allowed to see.
This method support the use of ListingFilter
inside the ListingContext parameter to get task that meet certain
criteria like WorkflowService.FILTER_KEY_ASSIGNEE , WorkflowService.FILTER_KEY_STATUS ,
WorkflowService.FILTER_KEY_PRIORITY , WorkflowService.FILTER_KEY_DUE . |
List<Task> |
WorkflowService.getTasks(Process process)
Get all the tasks in progress for the specified process.
|
PagingResult<Task> |
WorkflowService.getTasks(Process process,
ListingContext listingContext)
Get the tasks for the specified process.
|
Modifier and Type | Method and Description |
---|---|
void |
WorkflowService.addDocuments(Task task,
List<Document> items)
Add a list of items to the the specified task.
|
Task |
WorkflowService.claimTask(Task task)
Claiming a task is done by one of the candidates of a task, task owner or
process-initiator
|
Task |
WorkflowService.completeTask(Task task,
Map<String,Serializable> variables)
Completing a task.
|
List<Document> |
WorkflowService.getDocuments(Task task)
Returns a list items associated to the the task.
|
PagingResult<Document> |
WorkflowService.getDocuments(Task task,
ListingContext listingContext) |
TaskTypeDefinition |
ModelDefinitionService.getTaskTypeDefinition(Task task)
Returns the type definition for the given Task, the returned definition
will also include all properties from all applied aspects.
|
Map<String,Property> |
WorkflowService.getVariables(Task task)
Retrieves the variables for a given task.
|
Task |
WorkflowService.reassignTask(Task task,
Person assignee)
Reassign the task from the owner to an assignee
|
Task |
WorkflowService.refresh(Task task)
Returns the latest (and complete) variables for the provided task.
|
void |
WorkflowService.removeDocuments(Task task,
List<Document> items)
Delete a list of items to the the task.
|
Task |
WorkflowService.unclaimTask(Task task)
This removes the assignee of the task i.e the current user.
|
Task |
WorkflowService.updateVariables(Task task,
Map<String,Serializable> variables)
Update the variables for a given process.
|
Modifier and Type | Method and Description |
---|---|
List<Task> |
AbstractWorkflowService.getTasks()
Returns a list of task in progress for the current user.
|
List<Task> |
AbstractWorkflowService.getTasks(Process process)
Get all the tasks in progress for the specified process.
|
Modifier and Type | Method and Description |
---|---|
List<Document> |
AbstractWorkflowService.getDocuments(Task task)
Returns a list items associated to the the task.
|
TaskTypeDefinition |
AbstractModelDefinitionService.getTaskTypeDefinition(Task task) |
Modifier and Type | Method and Description |
---|---|
Task |
OnPremiseWorkflowServiceImpl.claimTask(Task task)
Claiming a task is done by one of the candidates of a task, task owner or
process-initiator
|
Task |
OnPremiseWorkflowServiceImpl.completeTask(Task task,
Map<String,Serializable> variables)
Completing a task.
|
Task |
OnPremiseWorkflowServiceImpl.getTask(String taskIdentifier)
Retrieves a single task by its id.
|
Task |
OnPremiseWorkflowServiceImpl.reassignTask(Task task,
Person assignee)
Reassign the task from the owner to an assignee
|
Task |
OnPremiseWorkflowServiceImpl.refresh(Task task)
Returns the latest (and complete) variables for the provided task.
|
Task |
OnPremiseWorkflowServiceImpl.unclaimTask(Task task)
This removes the assignee of the task i.e the current user.
|
Task |
OnPremiseWorkflowServiceImpl.updateVariables(Task task,
Map<String,Serializable> variables)
Update the variables for a given process.
|
Modifier and Type | Method and Description |
---|---|
PagingResult<Task> |
OnPremiseWorkflowServiceImpl.getTasks(ListingContext listingContext)
Returns a list of tasks that the authenticated user is allowed to see.
This method support the use of ListingFilter
inside the ListingContext parameter to get task that meet certain
criteria like WorkflowService.FILTER_KEY_ASSIGNEE , WorkflowService.FILTER_KEY_STATUS ,
WorkflowService.FILTER_KEY_PRIORITY , WorkflowService.FILTER_KEY_DUE . |
PagingResult<Task> |
OnPremiseWorkflowServiceImpl.getTasks(Process process,
ListingContext listingContext)
Get the tasks for the specified process.
|
Modifier and Type | Method and Description |
---|---|
void |
OnPremiseWorkflowServiceImpl.addDocuments(Task task,
List<Document> items)
Add a list of items to the the specified task.
|
Task |
OnPremiseWorkflowServiceImpl.claimTask(Task task)
Claiming a task is done by one of the candidates of a task, task owner or
process-initiator
|
Task |
OnPremiseWorkflowServiceImpl.completeTask(Task task,
Map<String,Serializable> variables)
Completing a task.
|
PagingResult<Document> |
OnPremiseWorkflowServiceImpl.getDocuments(Task task,
ListingContext listingContext) |
Map<String,Property> |
OnPremiseWorkflowServiceImpl.getVariables(Task task) |
Task |
OnPremiseWorkflowServiceImpl.reassignTask(Task task,
Person assignee)
Reassign the task from the owner to an assignee
|
Task |
OnPremiseWorkflowServiceImpl.refresh(Task task)
Returns the latest (and complete) variables for the provided task.
|
void |
OnPremiseWorkflowServiceImpl.removeDocuments(Task task,
List<Document> items)
Delete a list of items to the the task.
|
Task |
OnPremiseWorkflowServiceImpl.unclaimTask(Task task)
This removes the assignee of the task i.e the current user.
|
Task |
OnPremiseWorkflowServiceImpl.updateVariables(Task task,
Map<String,Serializable> variables)
Update the variables for a given process.
|
Modifier and Type | Method and Description |
---|---|
Task |
PublicAPIWorkflowServiceImpl.claimTask(Task task)
Claiming a task is done by one of the candidates of a task, task owner or
process-initiator
|
Task |
PublicAPIWorkflowServiceImpl.completeTask(Task task,
Map<String,Serializable> variables)
Completing a task.
|
Task |
PublicAPIWorkflowServiceImpl.getTask(String taskIdentifier)
Retrieves a single task by its id.
|
Task |
PublicAPIWorkflowServiceImpl.reassignTask(Task task,
Person assignee)
Reassign the task from the owner to an assignee
|
Task |
PublicAPIWorkflowServiceImpl.refresh(Task task)
Returns the latest (and complete) variables for the provided task.
|
Task |
PublicAPIWorkflowServiceImpl.unclaimTask(Task task)
This removes the assignee of the task i.e the current user.
|
Task |
PublicAPIWorkflowServiceImpl.updateVariable(Task task,
String key,
Serializable value) |
Task |
PublicAPIWorkflowServiceImpl.updateVariables(Task task,
Map<String,Serializable> variables)
Update the variables for a given process.
|
Modifier and Type | Method and Description |
---|---|
PagingResult<Task> |
PublicAPIWorkflowServiceImpl.getTasks(ListingContext listingContext)
Returns a list of tasks that the authenticated user is allowed to see.
This method support the use of ListingFilter
inside the ListingContext parameter to get task that meet certain
criteria like WorkflowService.FILTER_KEY_ASSIGNEE , WorkflowService.FILTER_KEY_STATUS ,
WorkflowService.FILTER_KEY_PRIORITY , WorkflowService.FILTER_KEY_DUE . |
PagingResult<Task> |
PublicAPIWorkflowServiceImpl.getTasks(Process process,
ListingContext listingContext)
Get the tasks for the specified process.
|
Modifier and Type | Method and Description |
---|---|
void |
PublicAPIWorkflowServiceImpl.addDocuments(Task task,
List<Document> items)
Add a list of items to the the specified task.
|
Task |
PublicAPIWorkflowServiceImpl.claimTask(Task task)
Claiming a task is done by one of the candidates of a task, task owner or
process-initiator
|
Task |
PublicAPIWorkflowServiceImpl.completeTask(Task task,
Map<String,Serializable> variables)
Completing a task.
|
PagingResult<Document> |
PublicAPIWorkflowServiceImpl.getDocuments(Task task,
ListingContext listingContext) |
Map<String,Property> |
PublicAPIWorkflowServiceImpl.getVariables(Task task)
Retrieves the variables for a given task.
|
Task |
PublicAPIWorkflowServiceImpl.reassignTask(Task task,
Person assignee)
Reassign the task from the owner to an assignee
|
Task |
PublicAPIWorkflowServiceImpl.refresh(Task task)
Returns the latest (and complete) variables for the provided task.
|
void |
PublicAPIWorkflowServiceImpl.removeDocuments(Task task,
List<Document> items)
Delete a list of items to the the task.
|
Task |
PublicAPIWorkflowServiceImpl.unclaimTask(Task task)
This removes the assignee of the task i.e the current user.
|
Task |
PublicAPIWorkflowServiceImpl.updateVariable(Task task,
String key,
Serializable value) |
Task |
PublicAPIWorkflowServiceImpl.updateVariables(Task task,
Map<String,Serializable> variables)
Update the variables for a given process.
|
Copyright © 2012-2018 Alfresco Software. All Rights Reserved.