diff --git a/geoportal-common/CHANGELOG.md b/geoportal-common/CHANGELOG.md index e89b63c..2a117e7 100644 --- a/geoportal-common/CHANGELOG.md +++ b/geoportal-common/CHANGELOG.md @@ -1,7 +1,7 @@ # Changelog for org.gcube.application.geoportal-common ## [v1.1.0-SNAPSHOT] - 2024-04-08 -- Added optional message to performStep method [#27192] +- Added message to StepExecutionRequest [#27192] ## [v1.0.13] - 2023-09-06 - Using parent range version [#25572] diff --git a/geoportal-common/src/main/java/org/gcube/application/geoportal/common/model/rest/StepExecutionRequest.java b/geoportal-common/src/main/java/org/gcube/application/geoportal/common/model/rest/StepExecutionRequest.java index 8e6c34b..3f9ec0c 100644 --- a/geoportal-common/src/main/java/org/gcube/application/geoportal/common/model/rest/StepExecutionRequest.java +++ b/geoportal-common/src/main/java/org/gcube/application/geoportal/common/model/rest/StepExecutionRequest.java @@ -12,13 +12,9 @@ import lombok.NoArgsConstructor; @Data @AllArgsConstructor @NoArgsConstructor -public class StepExecutionRequest { +public class StepExecutionRequest implements StepExecutionInterface { private String stepID; private String message; private Document options; - - public String getMessage() { - return message; - } }