Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
geomultisens
gms-aux
Commits
07974c05
Commit
07974c05
authored
Jun 08, 2017
by
Daniel Eggert
Browse files
added interfaces changes to query for available pyflink scripts
parent
14ea42e7
Changes
2
Hide whitespace changes
Inline
Side-by-side
gms-module-interfaces/src/main/java/de/potsdam/gfz/gms/shared/controller/ControllerModuleInterface.java
View file @
07974c05
...
...
@@ -3,6 +3,7 @@
*/
package
de.potsdam.gfz.gms.shared.controller
;
import
java.util.List
;
import
java.util.Set
;
import
de.potsdam.gfz.gms.shared.GmsModuleInterface
;
...
...
@@ -57,10 +58,20 @@ public interface ControllerModuleInterface extends GmsModuleInterface {
* @return
*/
public
String
getProcModuleVersionInfo
();
/**
* return the flink api version info, if available
*
* @return
*/
public
String
getFlinkVersionInfo
();
/**
* Returns a list of scripts available to the processing module
*
* @param path
* @param regexFilterPattern
* @return
*/
public
List
<
String
>
getAvailableScripts
();
}
gms-module-interfaces/src/main/java/de/potsdam/gfz/gms/shared/sceneprocessor/SceneProcessorModuleInterface.java
View file @
07974c05
...
...
@@ -3,6 +3,7 @@
*/
package
de.potsdam.gfz.gms.shared.sceneprocessor
;
import
java.util.List
;
import
java.util.Map
;
import
de.potsdam.gfz.gms.shared.GmsModuleInterface
;
...
...
@@ -61,4 +62,13 @@ public interface SceneProcessorModuleInterface extends GmsModuleInterface {
*/
public
Map
<
Long
,
Boolean
>
getProcesses
();
/**
* Returns a list of available scripts under the given path matching the given filter pattern.
*
* @param path
* @param regexFilterPattern
* @return
*/
public
List
<
String
>
getAvailableScripts
(
String
path
,
String
regexFilterPattern
);
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment