├── .gitignore ├── README.md ├── pom.xml └── src └── main └── webapp ├── WEB-INF └── web.xml ├── bootstrap ├── css │ ├── bootstrap-responsive.css │ ├── bootstrap-responsive.min.css │ ├── bootstrap.css │ └── bootstrap.min.css ├── img │ ├── glyphicons-halflings-white.png │ └── glyphicons-halflings.png └── js │ ├── bootstrap.js │ └── bootstrap.min.js ├── content ├── startProcess.jsp └── taskList.jsp ├── img └── loading.gif ├── index.jsp ├── js └── jbpm-forms-rest-integration.js ├── login.jsp ├── logout.jsp ├── showProcessForm.html └── showTaskForm.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pefernan/embedding-jbpm-forms-example/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pefernan/embedding-jbpm-forms-example/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pefernan/embedding-jbpm-forms-example/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pefernan/embedding-jbpm-forms-example/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/bootstrap/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pefernan/embedding-jbpm-forms-example/HEAD/src/main/webapp/bootstrap/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /src/main/webapp/bootstrap/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pefernan/embedding-jbpm-forms-example/HEAD/src/main/webapp/bootstrap/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /src/main/webapp/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pefernan/embedding-jbpm-forms-example/HEAD/src/main/webapp/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /src/main/webapp/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pefernan/embedding-jbpm-forms-example/HEAD/src/main/webapp/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/main/webapp/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pefernan/embedding-jbpm-forms-example/HEAD/src/main/webapp/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /src/main/webapp/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pefernan/embedding-jbpm-forms-example/HEAD/src/main/webapp/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /src/main/webapp/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pefernan/embedding-jbpm-forms-example/HEAD/src/main/webapp/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /src/main/webapp/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pefernan/embedding-jbpm-forms-example/HEAD/src/main/webapp/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/main/webapp/content/startProcess.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pefernan/embedding-jbpm-forms-example/HEAD/src/main/webapp/content/startProcess.jsp -------------------------------------------------------------------------------- /src/main/webapp/content/taskList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pefernan/embedding-jbpm-forms-example/HEAD/src/main/webapp/content/taskList.jsp -------------------------------------------------------------------------------- /src/main/webapp/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pefernan/embedding-jbpm-forms-example/HEAD/src/main/webapp/img/loading.gif -------------------------------------------------------------------------------- /src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pefernan/embedding-jbpm-forms-example/HEAD/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /src/main/webapp/js/jbpm-forms-rest-integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pefernan/embedding-jbpm-forms-example/HEAD/src/main/webapp/js/jbpm-forms-rest-integration.js -------------------------------------------------------------------------------- /src/main/webapp/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pefernan/embedding-jbpm-forms-example/HEAD/src/main/webapp/login.jsp -------------------------------------------------------------------------------- /src/main/webapp/logout.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pefernan/embedding-jbpm-forms-example/HEAD/src/main/webapp/logout.jsp -------------------------------------------------------------------------------- /src/main/webapp/showProcessForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pefernan/embedding-jbpm-forms-example/HEAD/src/main/webapp/showProcessForm.html -------------------------------------------------------------------------------- /src/main/webapp/showTaskForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pefernan/embedding-jbpm-forms-example/HEAD/src/main/webapp/showTaskForm.html --------------------------------------------------------------------------------