diff --git a/NOTICE b/NOTICE index 397587f820723c1e6ba00fab488463fd59aa85e1..38368e58c5f4ec92fb44b77e217f97b2586aa7c3 100644 --- a/NOTICE +++ b/NOTICE @@ -20,7 +20,7 @@ The following software have components provided under the terms of this license: - Bean Validation API (from http://beanvalidation.org) - Bean Validation API (from http://beanvalidation.org) - Byte Buddy (without dependencies) (from https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy) -- Byte Buddy Java agent (from https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-agent) +- Byte Buddy agent (from https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-agent) - ClassMate (from http://github.com/cowtowncoder/java-classmate) - Elastic JNA Distribution (from https://github.com/java-native-access/jna) - Expression Language 3.0 (from https://projects.eclipse.org/projects/ee4j.el) @@ -72,13 +72,8 @@ The following software have components provided under the terms of this license: - SnakeYAML (from http://code.google.com/p/snakeyaml/) - Spring AOP (from https://github.com/spring-projects/spring-framework) - Spring Beans (from https://github.com/spring-projects/spring-framework) -- Spring Boot (from https://projects.spring.io/spring-boot/#/spring-boot-parent/spring-boot) -- Spring Boot AutoConfigure (from https://projects.spring.io/spring-boot/#/spring-boot-parent/spring-boot-autoconfigure) - Spring Boot Json Starter (from https://projects.spring.io/spring-boot/#/spring-boot-parent/spring-boot-starters/spring-boot-starter-json) -- Spring Boot Logging Starter (from https://projects.spring.io/spring-boot/#/spring-boot-parent/spring-boot-starters/spring-boot-starter-logging) -- Spring Boot Starter (from https://projects.spring.io/spring-boot/#/spring-boot-parent/spring-boot-starters/spring-boot-starter) - Spring Boot Tomcat Starter (from https://projects.spring.io/spring-boot/#/spring-boot-parent/spring-boot-starters/spring-boot-starter-tomcat) -- Spring Boot Validation Starter (from https://projects.spring.io/spring-boot/#/spring-boot-parent/spring-boot-starters/spring-boot-starter-validation) - Spring Boot Web Starter (from https://projects.spring.io/spring-boot/#/spring-boot-parent/spring-boot-starters/spring-boot-starter-web) - Spring Commons Logging Bridge (from https://github.com/spring-projects/spring-framework) - Spring Context (from https://github.com/spring-projects/spring-framework) @@ -112,6 +107,11 @@ The following software have components provided under the terms of this license: - rest-high-level (from https://github.com/elastic/elasticsearch) - rxjava (from https://github.com/ReactiveX/RxJava) - server (from https://github.com/elastic/elasticsearch) +- spring-boot (from https://spring.io/projects/spring-boot) +- spring-boot-autoconfigure (from https://spring.io/projects/spring-boot) +- spring-boot-starter (from https://spring.io/projects/spring-boot) +- spring-boot-starter-logging (from https://spring.io/projects/spring-boot) +- spring-boot-starter-validation (from https://spring.io/projects/spring-boot) - swagger-annotations (from https://repo1.maven.org/maven2/io/swagger/swagger-annotations) - swagger-jaxrs (from ) - tomcat-embed-core (from http://tomcat.apache.org/) @@ -330,4 +330,3 @@ The following software have components provided under the terms of this license: - JUnit (from http://junit.org) - System Rules (from http://stefanbirkner.github.io/system-rules/) - diff --git a/src/main/java/org/opengroup/osdu/core/common/model/status/Status.java b/src/main/java/org/opengroup/osdu/core/common/model/status/Status.java index 28fd63c78527abe02d25812f81ab868a25992810..cc0f2810e06084a9e44cecde9ecd88c78a347d38 100644 --- a/src/main/java/org/opengroup/osdu/core/common/model/status/Status.java +++ b/src/main/java/org/opengroup/osdu/core/common/model/status/Status.java @@ -1,5 +1,5 @@ package org.opengroup.osdu.core.common.model.status; public enum Status { - SUCCESS, FAILED, IN_PROGRESS, SKIPPED, PARTIAL_SUCCESS; + SUBMITTED, SUCCESS, FAILED, IN_PROGRESS, SKIPPED, PARTIAL_SUCCESS; }