]> git.mxchange.org Git - jjobs-lib.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Thu, 19 Jan 2023 04:46:49 +0000 (05:46 +0100)
committerRoland Häder <roland@mxchange.org>
Thu, 19 Jan 2023 04:46:49 +0000 (05:46 +0100)
- removed .gitkeep as there is now at least one file
- added remote interface for skills

src/.gitkeep [deleted file]
src/org/mxchange/jjobs/model/skill/SkillSessionBeanRemote.java [new file with mode: 0644]

diff --git a/src/.gitkeep b/src/.gitkeep
deleted file mode 100644 (file)
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 (file)
index 0000000..572460a
--- /dev/null
@@ -0,0 +1,37 @@
+/*
+ * Copyright (C) 2023 Roland Häder<roland@mxchange.org>
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+package org.mxchange.jjobs.model.skill;
+
+import java.io.Serializable;
+import javax.ejb.Remote;
+
+/**
+ * A remote interface for skills
+ * <p>
+ * @author Roland Häder<roland@mxchange.org>
+ */
+@Remote
+public interface SkillSessionBeanRemote extends Serializable {
+
+       /**
+        * Returns all skills being found
+        * <p>
+        * @return A list of all skills being found
+        */
+       public Iterable<Skillable> fetchAllSkills ();
+
+}