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

org.flowable.engine.interceptor.CreateUserTaskBeforeContext Maven / Gradle / Ivy

There is a newer version: 7.0.1
Show newest version
/* 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.flowable.engine.interceptor;

import java.util.List;

import org.flowable.bpmn.model.UserTask;
import org.flowable.engine.delegate.DelegateExecution;


public class CreateUserTaskBeforeContext {

    protected UserTask userTask;
    protected DelegateExecution execution;
    protected String name;
    protected String description;
    protected String dueDate;
    protected String priority;
    protected String category;
    protected String formKey;
    protected String skipExpression;
    protected String assignee;
    protected String owner;
    protected List candidateUsers;
    protected List candidateGroups;
    
    public CreateUserTaskBeforeContext() {
        
    }

    public CreateUserTaskBeforeContext(UserTask userTask, DelegateExecution execution, String name, String description, String dueDate, 
                    String priority, String category, String formKey, String skipExpression, String assignee, String owner, 
                    List candidateUsers, List candidateGroups) {

        this.userTask = userTask;
        this.execution = execution;
        this.name = name;
        this.description = description;
        this.dueDate = dueDate;
        this.priority = priority;
        this.category = category;
        this.formKey = formKey;
        this.skipExpression = skipExpression;
        this.assignee = assignee;
        this.owner = owner;
        this.candidateUsers = candidateUsers;
        this.candidateGroups = candidateGroups;
    }

    public UserTask getUserTask() {
        return userTask;
    }

    public void setUserTask(UserTask userTask) {
        this.userTask = userTask;
    }

    public DelegateExecution getExecution() {
        return execution;
    }

    public void setExecution(DelegateExecution execution) {
        this.execution = execution;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public String getDueDate() {
        return dueDate;
    }

    public void setDueDate(String dueDate) {
        this.dueDate = dueDate;
    }

    public String getPriority() {
        return priority;
    }

    public void setPriority(String priority) {
        this.priority = priority;
    }

    public String getCategory() {
        return category;
    }

    public void setCategory(String category) {
        this.category = category;
    }

    public String getFormKey() {
        return formKey;
    }

    public void setFormKey(String formKey) {
        this.formKey = formKey;
    }

    public String getSkipExpression() {
        return skipExpression;
    }

    public void setSkipExpression(String skipExpression) {
        this.skipExpression = skipExpression;
    }

    public String getAssignee() {
        return assignee;
    }

    public void setAssignee(String assignee) {
        this.assignee = assignee;
    }

    public String getOwner() {
        return owner;
    }

    public void setOwner(String owner) {
        this.owner = owner;
    }

    public List getCandidateUsers() {
        return candidateUsers;
    }

    public void setCandidateUsers(List candidateUsers) {
        this.candidateUsers = candidateUsers;
    }

    public List getCandidateGroups() {
        return candidateGroups;
    }

    public void setCandidateGroups(List candidateGroups) {
        this.candidateGroups = candidateGroups;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy