updated StepExecutionRequest

This commit is contained in:
Francesco Mangiacrapa 2024-04-12 15:33:42 +02:00
parent 1180fbd8be
commit 2f6c1d8ad6
2 changed files with 2 additions and 6 deletions

View File

@ -1,7 +1,7 @@
# Changelog for org.gcube.application.geoportal-common # Changelog for org.gcube.application.geoportal-common
## [v1.1.0-SNAPSHOT] - 2024-04-08 ## [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 ## [v1.0.13] - 2023-09-06
- Using parent range version [#25572] - Using parent range version [#25572]

View File

@ -12,13 +12,9 @@ import lombok.NoArgsConstructor;
@Data @Data
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor
public class StepExecutionRequest { public class StepExecutionRequest implements StepExecutionInterface {
private String stepID; private String stepID;
private String message; private String message;
private Document options; private Document options;
public String getMessage() {
return message;
}
} }