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

nosi.core.webapp.bpmn.InterfaceBPMNTask Maven / Gradle / Ivy

Go to download

IGRP Framework is a powerful and highly customizable platform developed by the Operational Nucleus for the Information Society (NOSi) to create web applications, it provides out of box, several modules to make easy to create stand-alone, production-grade web applications: authentication and access-control, business processes automation, reporting, page builder with automatic code generation and incorporation of the Once-Only-Principle, written in Java. IGRP Framework WAR - Contains some keys resources that give UI to IGRP Framework and others supports files.

There is a newer version: 2.0.0.241121-RCM
Show newest version
package nosi.core.webapp.bpmn;

import java.io.IOException;
import java.util.List;
import jakarta.servlet.ServletException;

import nosi.core.webapp.Model;
import nosi.core.webapp.Response;
import nosi.core.webapp.View;
import nosi.core.webapp.activit.rest.entities.TaskServiceQuery;
import nosi.webapps.igrp.dao.TipoDocumentoEtapa;

/**
 * Emanuel
 * 7 May 2018
 */
public interface InterfaceBPMNTask {

	//Display task
    Response index() throws IOException, ServletException;
	
	Response index(String app, Model model, View view) throws IOException,ServletException;
	
	Response index(String app, Model model, View view, InterfaceBPMNTask bpmnTask) throws IOException,ServletException;
	
	//Details of Task
    String details(TaskServiceQuery task) throws IOException,ServletException;
	
	//Save task on activiti
    Response save() throws IOException, ServletException;
	
	//Update task on activiti
    Response update() throws IOException, ServletException;
	
	//List Output Document Type Associated with current task
    List getOutputDocumentType();

	//List Input Document Type Associated with current task
    List getInputDocumentType();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy