]> git.mxchange.org Git - jphone-core.git/blob - src/org/mxchange/jphone/phonenumbers/smsprovider/SmsProvider.java
missed to add annotations here
[jphone-core.git] / src / org / mxchange / jphone / phonenumbers / smsprovider / SmsProvider.java
1 /*
2  * Copyright (C) 2015 Roland Haeder
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
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 General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.jphone.phonenumbers.smsprovider;
18
19 import java.io.Serializable;
20 import org.mxchange.jcountry.data.Country;
21
22 /**
23  * A POJO for SMS provider
24  * <p>
25  * @author Roland Haeder
26  */
27 public interface SmsProvider extends Serializable {
28
29         /**
30          * Getter for id number
31          * <p>
32          * @return Id number
33          */
34         public Long getProviderId ();
35
36         /**
37          * Setter for id number
38          * <p>
39          * @param providerId Id number
40          */
41         public void setProviderId (final Long providerId);
42
43         /**
44          * Getter for provider dial prefix
45          * <p>
46          * @return Provider dial prefix
47          */
48         public Long getProviderDialPrefix ();
49
50         /**
51          * Setter for provider dial prefix
52          * <p>
53          * @param providerDialPrefix Provider dial prefix
54          */
55         public void setProviderDialPrefix (final Long providerDialPrefix);
56
57         /**
58          * Getter for provider name
59          * <p>
60          * @return Provider name
61          */
62         public String getProviderName ();
63
64         /**
65          * Setter for provider name
66          * <p>
67          * @param providerName Provider name
68          */
69         public void setProviderName (final String providerName);
70
71         /**
72          * Getter for country instance ('s dial data)
73          * <p>
74          * @return Country instance
75          */
76         public Country getCountry ();
77
78         /**
79          * Setter for country instance ('s dial data)
80          * <p>
81          * @param country Country instance
82          */
83         public void setCountry (final Country country);
84 }