]> git.mxchange.org Git - jphone-lib.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Wed, 15 Apr 2020 20:21:06 +0000 (22:21 +0200)
committerRoland Häder <roland@mxchange.org>
Thu, 16 Apr 2020 00:10:22 +0000 (02:10 +0200)
- splitted mobile number methods from phone (fax/land-line) numbers

Signed-off-by: Roland Häder <roland@mxchange.org>
src/org/mxchange/jphone/model/phonenumbers/mobile/AdminMobileSessionBeanRemote.java [new file with mode: 0644]
src/org/mxchange/jphone/model/phonenumbers/mobile/MobileSessionBeanRemote.java [new file with mode: 0644]
src/org/mxchange/jphone/model/phonenumbers/phone/AdminPhoneSessionBeanRemote.java
src/org/mxchange/jphone/model/phonenumbers/phone/PhoneSessionBeanRemote.java

diff --git a/src/org/mxchange/jphone/model/phonenumbers/mobile/AdminMobileSessionBeanRemote.java b/src/org/mxchange/jphone/model/phonenumbers/mobile/AdminMobileSessionBeanRemote.java
new file mode 100644 (file)
index 0000000..59ac11f
--- /dev/null
@@ -0,0 +1,46 @@
+/*
+ * Copyright (C) 2016 - 2020 Free Software Foundation
+ *
+ * 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.jphone.model.phonenumbers.mobile;
+
+import java.io.Serializable;
+import javax.ejb.Remote;
+
+/**
+ * A remote administrative interface for any kind of phone numbers.
+ * <p>
+ * @author Roland Häder<roland@mxchange.org>
+ */
+@Remote
+public interface AdminMobileSessionBeanRemote extends Serializable {
+
+       /**
+        * Deletes given mobile data.
+        * <p>
+        * @param mobileNumber Mobile data to be deleted
+        */
+       void deleteMobileData (final DialableMobileNumber mobileNumber);
+
+       /**
+        * Updates data from given mobile number instance in database
+        * <p>
+        * @param mobileNumber Mobile number instance to update
+        * <p>
+        * @return Updated mobile number instance
+        */
+       DialableMobileNumber updateMobileData (final DialableMobileNumber mobileNumber);
+
+}
diff --git a/src/org/mxchange/jphone/model/phonenumbers/mobile/MobileSessionBeanRemote.java b/src/org/mxchange/jphone/model/phonenumbers/mobile/MobileSessionBeanRemote.java
new file mode 100644 (file)
index 0000000..5f8a9a7
--- /dev/null
@@ -0,0 +1,38 @@
+/*
+ * Copyright (C) 2016 - 2020 Free Software Foundation
+ *
+ * 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.jphone.model.phonenumbers.mobile;
+
+import java.io.Serializable;
+import java.util.List;
+import javax.ejb.Remote;
+
+/**
+ * A remote interface for phone numbers (any kind)
+ * <p>
+ * @author Roland Häder<roland@mxchange.org>
+ */
+@Remote
+public interface MobileSessionBeanRemote extends Serializable {
+
+       /**
+        * Returns a list of all cell phone numbers
+        * <p>
+        * @return All cell phone numbers
+        */
+       List<DialableMobileNumber> fetchAllMobileNumbers ();
+
+}
index a188a4f95aa387ed9ec52e908ead70423a8fd920..1f1f6f9c9779dd0165a7288dedf70da6f64952ce 100644 (file)
@@ -20,7 +20,6 @@ import java.io.Serializable;
 import javax.ejb.Remote;
 import org.mxchange.jphone.model.phonenumbers.fax.DialableFaxNumber;
 import org.mxchange.jphone.model.phonenumbers.landline.DialableLandLineNumber;
-import org.mxchange.jphone.model.phonenumbers.mobile.DialableMobileNumber;
 
 /**
  * A remote administrative interface for any kind of phone numbers.
@@ -44,13 +43,6 @@ public interface AdminPhoneSessionBeanRemote extends Serializable {
         */
        void deleteLandLineData (final DialableLandLineNumber landLineNumber);
 
-       /**
-        * Deletes given mobile data.
-        * <p>
-        * @param mobileNumber Mobile data to be deleted
-        */
-       void deleteMobileData (final DialableMobileNumber mobileNumber);
-
        /**
         * Updates data from given fax number instance in database
         * <p>
@@ -69,13 +61,4 @@ public interface AdminPhoneSessionBeanRemote extends Serializable {
         */
        DialableLandLineNumber updateLandLineData (final DialableLandLineNumber landLineNumber);
 
-       /**
-        * Updates data from given mobile number instance in database
-        * <p>
-        * @param mobileNumber Mobile number instance to update
-        * <p>
-        * @return Updated mobile number instance
-        */
-       DialableMobileNumber updateMobileData (final DialableMobileNumber mobileNumber);
-
 }
index 3a6194ba685314b358d1c5efcf567de5248c00d4..b84953650e199e83042db3148202b293d3992111 100644 (file)
@@ -21,7 +21,6 @@ import java.util.List;
 import javax.ejb.Remote;
 import org.mxchange.jphone.model.phonenumbers.fax.DialableFaxNumber;
 import org.mxchange.jphone.model.phonenumbers.landline.DialableLandLineNumber;
-import org.mxchange.jphone.model.phonenumbers.mobile.DialableMobileNumber;
 
 /**
  * A remote interface for phone numbers (any kind)
@@ -45,11 +44,4 @@ public interface PhoneSessionBeanRemote extends Serializable {
         */
        List<DialableLandLineNumber> fetchAllLandLineNumbers ();
 
-       /**
-        * Returns a list of all cell phone numbers
-        * <p>
-        * @return All cell phone numbers
-        */
-       List<DialableMobileNumber> fetchAllMobileNumbers ();
-
 }