]> git.mxchange.org Git - jphone-lib.git/commitdiff
Changed interface (POJI) name SmsProvider to MobileProvider
authorRoland Haeder <roland@mxchange.org>
Tue, 12 Apr 2016 18:04:47 +0000 (20:04 +0200)
committerRoland Haeder <roland@mxchange.org>
Tue, 12 Apr 2016 18:05:01 +0000 (20:05 +0200)
lib/jphone-core.jar
src/org/mxchange/jphone/phonenumbers/smsprovider/MobileProviderSingletonBeanRemote.java [new file with mode: 0644]
src/org/mxchange/jphone/phonenumbers/smsprovider/SmsProviderSingletonBeanRemote.java [deleted file]

index f3842ac699566b448d005be0eb2aee5a71843015..ec8a9b92f168dd26cce8f8c0540926ee0f2da933 100644 (file)
Binary files a/lib/jphone-core.jar and b/lib/jphone-core.jar differ
diff --git a/src/org/mxchange/jphone/phonenumbers/smsprovider/MobileProviderSingletonBeanRemote.java b/src/org/mxchange/jphone/phonenumbers/smsprovider/MobileProviderSingletonBeanRemote.java
new file mode 100644 (file)
index 0000000..04a0b0a
--- /dev/null
@@ -0,0 +1,38 @@
+/*
+ * Copyright (C) 2016 Roland Haeder
+ *
+ * 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.phonenumbers.smsprovider;
+
+import java.io.Serializable;
+import java.util.List;
+import javax.ejb.Remote;
+
+/**
+ * A remote interface for cellphone carrier data retrieval
+ * <p>
+ * @author Roland Haeder<roland@mxchange.org>
+ */
+@Remote
+public interface MobileProviderSingletonBeanRemote extends Serializable {
+
+       /**
+        * All registered SMS providers
+        * <p>
+        * @return A list of all SMS providers
+        */
+       List<MobileProvider> allMobileProvider ();
+
+}
diff --git a/src/org/mxchange/jphone/phonenumbers/smsprovider/SmsProviderSingletonBeanRemote.java b/src/org/mxchange/jphone/phonenumbers/smsprovider/SmsProviderSingletonBeanRemote.java
deleted file mode 100644 (file)
index b28c227..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Copyright (C) 2016 Roland Haeder
- *
- * 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.phonenumbers.smsprovider;
-
-import java.io.Serializable;
-import java.util.List;
-import javax.ejb.Remote;
-
-/**
- * A remote interface for cellphone carrier data retrieval
- * <p>
- * @author Roland Haeder<roland@mxchange.org>
- */
-@Remote
-public interface SmsProviderSingletonBeanRemote extends Serializable {
-
-       /**
-        * All registered SMS providers
-        * <p>
-        * @return A list of all SMS providers
-        */
-       List<SmsProvider> allSmsProvider ();
-
-}