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
37 void addMobileProvider ();
40 * Returns a list of all mobile providers
42 * @return A list of all mobile providers
44 List<MobileProvider> allMobileProvider ();
47 * Checks whether mobile providers are registered
49 * @return Whether mobile providers are registered
51 boolean hasMobileProvider ();
54 * Getter for provider dial prefix
56 * @return Provider dial prefix
58 Long getProviderDialPrefix ();
61 * Setter for provider dial prefix
63 * @param providerDialPrefix Provider dial prefix
65 void setProviderDialPrefix (final Long providerDialPrefix);
68 * Getter for provider name
70 * @return Provider name
72 String getProviderName ();
75 * Setter for provider name
77 * @param providerName Provider name
79 void setProviderName (final String providerName);
82 * Getter for country instance ('s dial data)
84 * @return Country instance
86 Country getProviderCountry ();
89 * Setter for country instance ('s dial data)
91 * @param country Country instance
93 void setProviderCountry (final Country country);
96 * Getter for pattern for mail gateway
98 * @return Pattern for mail gateway
100 String getProviderMailPattern ();
103 * Setter for pattern for mail gateway
105 * @param providerMailRegex Pattern for mail gateway
107 void setProviderMailPattern (final String providerMailRegex);