2 * Copyright (C) 2016 Roland Haeder
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU Affero General Public License as
6 * published by the Free Software Foundation, either version 3 of the
7 * License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Affero General Public License for more details.
14 * You should have received a copy of the GNU Affero General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 package org.mxchange.addressbook.beans.mobileprovider;
19 import java.io.Serializable;
20 import java.util.List;
21 import org.mxchange.jcountry.data.Country;
22 import org.mxchange.jphone.phonenumbers.mobileprovider.MobileProvider;
25 * An interface for a request web controller (bean) for administrative mobile
28 * @author Roland Haeder<roland@mxchange.org>
30 public interface AddressbookAdminMobileProviderWebRequestController extends Serializable {
33 * Adds a mobile provider to database by calling the EJB. A pre-check on
34 * dial-prefix and country combination is done, if found, an exception is
35 * thrown. A redirect should take place after successfull creation.
37 * @return Redirect outcome
39 String addMobileProvider ();
42 * Returns a list of all mobile providers
44 * @return A list of all mobile providers
46 List<MobileProvider> allMobileProvider ();
49 * Checks whether mobile providers are registered
51 * @return Whether mobile providers are registered
53 boolean hasMobileProvider ();
56 * Getter for provider dial prefix
58 * @return Provider dial prefix
60 Long getProviderDialPrefix ();
63 * Setter for provider dial prefix
65 * @param providerDialPrefix Provider dial prefix
67 void setProviderDialPrefix (final Long providerDialPrefix);
70 * Getter for provider name
72 * @return Provider name
74 String getProviderName ();
77 * Setter for provider name
79 * @param providerName Provider name
81 void setProviderName (final String providerName);
84 * Getter for country instance ('s dial data)
86 * @return Country instance
88 Country getProviderCountry ();
91 * Setter for country instance ('s dial data)
93 * @param country Country instance
95 void setProviderCountry (final Country country);
98 * Getter for pattern for mail gateway
100 * @return Pattern for mail gateway
102 String getProviderMailPattern ();
105 * Setter for pattern for mail gateway
107 * @param providerMailPattern Pattern for mail gateway
109 void setProviderMailPattern (final String providerMailPattern);