From: Roland Häder Date: Thu, 19 Jan 2023 04:46:49 +0000 (+0100) Subject: Continued: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3b387f0656f1b852e9b7d797ac6fd07ad336c7c9;p=jjobs-lib.git Continued: - removed .gitkeep as there is now at least one file - added remote interface for skills --- diff --git a/src/.gitkeep b/src/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/src/org/mxchange/jjobs/model/skill/SkillSessionBeanRemote.java b/src/org/mxchange/jjobs/model/skill/SkillSessionBeanRemote.java new file mode 100644 index 0000000..572460a --- /dev/null +++ b/src/org/mxchange/jjobs/model/skill/SkillSessionBeanRemote.java @@ -0,0 +1,37 @@ +/* + * Copyright (C) 2023 Roland Häder + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +package org.mxchange.jjobs.model.skill; + +import java.io.Serializable; +import javax.ejb.Remote; + +/** + * A remote interface for skills + *

+ * @author Roland Häder + */ +@Remote +public interface SkillSessionBeanRemote extends Serializable { + + /** + * Returns all skills being found + *

+ * @return A list of all skills being found + */ + public Iterable fetchAllSkills (); + +}