All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kie.api.task.TaskService Maven / Gradle / Ivy

/*
 * Copyright 2013 Red Hat, Inc. and/or its affiliates.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.kie.api.task;

import java.util.Date;
import java.util.List;
import java.util.Map;

import org.kie.api.runtime.CommandExecutor;
import org.kie.api.task.model.Attachment;
import org.kie.api.task.model.Comment;
import org.kie.api.task.model.Content;
import org.kie.api.task.model.OrganizationalEntity;
import org.kie.api.task.model.Status;
import org.kie.api.task.model.Task;
import org.kie.api.task.model.TaskSummary;

/**
 * The Task Service Entry Point serves as
 *  facade of all the other services, providing a single entry point
 *  to access to all the services
 */
public interface TaskService extends CommandExecutor {

    void activate(long taskId, String userId);

    void claim(long taskId, String userId);

    void claimNextAvailable(String userId, String language);

    void complete(long taskId, String userId, Map data);

    void delegate(long taskId, String userId, String targetUserId);

    void exit(long taskId, String userId);

    void fail(long taskId, String userId, Map faultData);

    void forward(long taskId, String userId, String targetEntityId);

    Task getTaskByWorkItemId(long workItemId);

    Task getTaskById(long taskId);

    List getTasksAssignedAsBusinessAdministrator(String userId, String language);

    List getTasksAssignedAsPotentialOwner(String userId, String language);

    @Deprecated
    List getTasksAssignedAsPotentialOwner(String userId, List groupIds, String language, int firstResult, int maxResults);

    List getTasksAssignedAsPotentialOwnerByStatus(String userId, List status, String language);

    List getTasksOwned(String userId, String language);

    List getTasksOwnedByStatus(String userId, List status, String language);

    List getTasksByStatusByProcessInstanceId(long processInstanceId, List status, String language);

    List getTasksAssignedAsPotentialOwnerByProcessId(String userId, String processId);

    List getTasksByProcessInstanceId(long processInstanceId);

    long addTask(Task task, Map params);

    void release(long taskId, String userId);

    void resume(long taskId, String userId);

    void skip(long taskId, String userId);

    void start(long taskId, String userId);

    void stop(long taskId, String userId);

    void suspend(long taskId, String userId);

    void nominate(long taskId, String userId, List potentialOwners);

    Content getContentById(long contentId);

    Attachment getAttachmentById(long attachId);

    Map getTaskContent(long taskId);

    Long addComment(long taskId, Comment comment);

    Long addComment(long taskId, String addedByUserId, String commentText);

    void deleteComment(long taskId, long commentId);

    List getAllCommentsByTaskId(long taskId);

    Comment getCommentById(long commentId);

    void setExpirationDate(long taskId, Date date);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy