mirror of
https://github.com/pcvolkmer/onkostar-plugin-dnpm.git
synced 2025-07-04 01:52:55 +00:00
Issue #42: Defaultangabe Version und Name sowie Typ der Pluginklasse
This commit is contained in:
25
src/main/java/DNPM/analyzer/BackendService.java
Normal file
25
src/main/java/DNPM/analyzer/BackendService.java
Normal file
@ -0,0 +1,25 @@
|
||||
package DNPM.analyzer;
|
||||
|
||||
import de.itc.onkostar.api.Disease;
|
||||
import de.itc.onkostar.api.Procedure;
|
||||
import de.itc.onkostar.api.analysis.OnkostarPluginType;
|
||||
|
||||
public abstract class BackendService implements IPluginPart {
|
||||
|
||||
@Override
|
||||
public final OnkostarPluginType getType() {
|
||||
return OnkostarPluginType.BACKEND_SERVICE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ein Backend-Service verwendet die Methode nicht, daher wird hier eine final Stub-Implementierung
|
||||
* verwendet, die ein Überschreiben verhindert.
|
||||
* @param procedure
|
||||
* @param disease
|
||||
*/
|
||||
@Override
|
||||
public final void analyze(Procedure procedure, Disease disease) {
|
||||
// No op
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user