From: Roland Haeder Date: Tue, 12 Apr 2016 18:27:55 +0000 (+0200) Subject: Renamed package smsprovider -> mobileprovider. They don't only provide SMS but also... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=41fec8be1b36faacc5c90333c13e3598f869dc51;p=jphone-lib.git Renamed package smsprovider -> mobileprovider. They don't only provide SMS but also many other mobile services. --- diff --git a/lib/jphone-core.jar b/lib/jphone-core.jar index ec8a9b9..251994e 100644 Binary files a/lib/jphone-core.jar and b/lib/jphone-core.jar differ diff --git a/src/org/mxchange/jphone/phonenumbers/mobileprovider/MobileProviderSingletonBeanRemote.java b/src/org/mxchange/jphone/phonenumbers/mobileprovider/MobileProviderSingletonBeanRemote.java new file mode 100644 index 0000000..6aeaed2 --- /dev/null +++ b/src/org/mxchange/jphone/phonenumbers/mobileprovider/MobileProviderSingletonBeanRemote.java @@ -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 . + */ +package org.mxchange.jphone.phonenumbers.mobileprovider; + +import java.io.Serializable; +import java.util.List; +import javax.ejb.Remote; + +/** + * A remote interface for mobile provider data retrieval + *

+ * @author Roland Haeder + */ +@Remote +public interface MobileProviderSingletonBeanRemote extends Serializable { + + /** + * All registered SMS providers + *

+ * @return A list of all SMS providers + */ + List allMobileProvider (); + +} diff --git a/src/org/mxchange/jphone/phonenumbers/smsprovider/MobileProviderSingletonBeanRemote.java b/src/org/mxchange/jphone/phonenumbers/smsprovider/MobileProviderSingletonBeanRemote.java deleted file mode 100644 index 04a0b0a..0000000 --- a/src/org/mxchange/jphone/phonenumbers/smsprovider/MobileProviderSingletonBeanRemote.java +++ /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 . - */ -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 - *

- * @author Roland Haeder - */ -@Remote -public interface MobileProviderSingletonBeanRemote extends Serializable { - - /** - * All registered SMS providers - *

- * @return A list of all SMS providers - */ - List allMobileProvider (); - -}