This is an automated email from the ASF dual-hosted git repository.
nadeeshan pushed a change to branch development
in repository https://gitbox.apache.org/repos/asf/oodt.git.
from 749af12 Updare cors headers and deployment docker profile
new c5a6fcf fix pagination for the workflow manager
new 217caab implement triggering workflows by events from OPSUI
new 0ec1565 add missing workflow manager api definitions
new aa995a1 fix oodt-1037 issue in product browser
new ef3d608 fix 00dt-1037 issue in workflow browser
new daae3be Merge branch 'development' into oodt-1035
new 1dba04e replace multiple catch clauses with a single clause
new daacf18 Merge pull request #128 from pavinduLakshan/oodt-1035
The 2235 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
react-components/oodt_opsui_sample_app/src/App.js | 1 +
.../src/components/fileManager/Product/Product.js | 11 +-
.../fileManager/ProductList/ProductList.js | 15 +-
.../workflowManager/NewWorkflow/NewWorkflow.js | 125 ++++++++++++++++
.../{WorkflowList => NewWorkflow}/index.js | 4 +-
.../workflowManager/WorkflowList/WorkflowList.js | 164 +++++++++++----------
.../src/services/wmservice.js | 66 +++++++++
.../swagger-implementations/workflow_manager.yaml | 59 ++++++++
.../resources/WorkflowEventListResource.java | 31 ++++
.../resources/WorkflowInstancePageResource.java | 11 +-
.../resources/WorkflowInstanceResource.java | 4 +-
.../cas/wmservices/services/WMJaxrsServiceV2.java | 77 +++++++++-
12 files changed, 474 insertions(+), 94 deletions(-)
create mode 100644
react-components/oodt_opsui_sample_app/src/components/workflowManager/NewWorkflow/NewWorkflow.js
copy
react-components/oodt_opsui_sample_app/src/components/workflowManager/{WorkflowList
=> NewWorkflow}/index.js (93%)
create mode 100644
react-components/oodt_opsui_sample_app/src/services/wmservice.js
create mode 100644
webapp/wmservices/src/main/java/org/apache/oodt/cas/wmservices/resources/WorkflowEventListResource.java