1
0
mirror of https://github.com/pcvolkmer/onkostar-plugin-dnpm.git synced 2025-07-03 01:32:55 +00:00

Issue #5: Vorschlag für den Aufbau des Projekts

* Maven-Projekt direkt im Hauptverzeichnis
* Anpassung der Maven-POM-Datei - nicht benötigte Abhängigkeiten entfernt
* Gitignore-Datei angelegt
This commit is contained in:
2023-03-10 09:24:12 +01:00
parent 9d66c42460
commit 4b121482f1
22 changed files with 93 additions and 167 deletions

View File

@ -0,0 +1,23 @@
package ATCCodes.services;
import ATCCodes.AgentCode;
import java.util.List;
/**
* Common interface for agent code services
*
* @author Paul-Christian Volkmer
*/
public interface AgentCodeService {
/**
* Queries source for agents with name and code starting with query string.
* If size is zero, all available results will be returned.
*
* @param query The query string
* @param size Maximal amount of responses
* @return A list with agent codes
*/
List<AgentCode> findAgentCodes(String query, int size);
}