This is an automated email from the ASF dual-hosted git repository.
machristie pushed a change to branch airavata-v2-refactoring
in repository https://gitbox.apache.org/repos/asf/airavata.git
from 39d863eeab Fixed collection mappings
new b182351a16 Added updateExperiment method and tests to verify update
logic
new 7ddbf1bbbe Finish database mappings and tests
new 2e7e51a1b8 Adding transactional service layer for ExecutionHandler
The 3 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:
.../apis/db/entity/ApplicationRunInfoEntity.java | 29 ++-
.../apache/airavata/apis/db/entity/BaseEntity.java | 12 +-
.../airavata/apis/db/entity/ExperimentEntity.java | 7 +-
.../application/runners/DockerRunnerEntity.java | 59 ++++-
.../runners/RunnerEntity.java} | 4 +-
.../application/runners/SlurmRunnerEntity.java | 119 +++++++++-
.../apis/exception/EntityNotFoundException.java | 23 ++
.../airavata/apis/handlers/ExecutionHandler.java | 30 ++-
.../airavata/apis/mapper/ExperimentMapper.java | 8 +-
.../apache/airavata/apis/mapper/ObjectMapper.java | 2 +
.../airavata/apis/service/ExecutionService.java | 13 +
.../apis/service/impl/ExecutionServiceImpl.java | 57 +++++
.../apis/handlers/ExecutionHandlerTest.java | 262 ++++++++++++++++-----
.../main/proto/execution/experiment_service.proto | 8 +
14 files changed, 536 insertions(+), 97 deletions(-)
copy
modules/airavata-apis/airavata-apis-server/src/main/java/org/apache/airavata/apis/db/entity/{backend/ComputeBackendEntity.java
=> application/runners/RunnerEntity.java} (66%)
create mode 100644
modules/airavata-apis/airavata-apis-server/src/main/java/org/apache/airavata/apis/exception/EntityNotFoundException.java
create mode 100644
modules/airavata-apis/airavata-apis-server/src/main/java/org/apache/airavata/apis/service/ExecutionService.java
create mode 100644
modules/airavata-apis/airavata-apis-server/src/main/java/org/apache/airavata/apis/service/impl/ExecutionServiceImpl.java