- Added optional message to performStep method [#27192]
This commit is contained in:
parent
ede76d625b
commit
fdabbe78d8
|
@ -1,5 +1,8 @@
|
|||
# Changelog for org.gcube.application.geoportal-common
|
||||
|
||||
## [v1.1.0-SNAPSHOT] - 2024-04-08
|
||||
- Added optional message to performStep method [#27192]
|
||||
|
||||
## [v1.0.13] - 2023-09-06
|
||||
- Using parent range version [#25572]
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>geoportal-common</artifactId>
|
||||
<version>1.0.13</version>
|
||||
<version>1.0.14-SNAPSHOT</version>
|
||||
<name>Geoportal Common</name>
|
||||
|
||||
<parent>
|
||||
|
|
|
@ -15,5 +15,6 @@ import lombok.NoArgsConstructor;
|
|||
public class StepExecutionRequest {
|
||||
|
||||
private String stepID;
|
||||
private String message;
|
||||
private Document options;
|
||||
}
|
||||
|
|
|
@ -39,7 +39,7 @@ public interface Projects<P extends Project> {
|
|||
public String queryForJSON(QueryRequest request)throws RemoteException;
|
||||
|
||||
//Execution
|
||||
public P performStep(String id, StepExecutionRequest request) throws RemoteException;
|
||||
public P performStep(String id, String message, StepExecutionRequest request) throws RemoteException;
|
||||
|
||||
//FileSets
|
||||
public P registerFileSet(String id, RegisterFileSetRequest req) throws RemoteException, InvalidRequestException;
|
||||
|
|
Loading…
Reference in New Issue