]> git.mxchange.org Git - pizzaservice-war.git/blob - src/java/org/mxchange/pizzaapplication/beans/customer/CustomerWebController.java
Updated author (email address) + jars + implemented very basic basket
[pizzaservice-war.git] / src / java / org / mxchange / pizzaapplication / beans / customer / CustomerWebController.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.pizzaapplication.beans.customer;
18
19 import java.io.Serializable;
20 import org.mxchange.jcore.model.contact.gender.Gender;
21
22 /**
23  * An interface for customer beans
24  *
25  * @author Roland Haeder<roland@mxchange.org>
26  */
27 public interface CustomerWebController extends Serializable {
28
29         /**
30          * Gender of the contact
31          *
32          * @return the gender
33          */
34         public Gender getGender ();
35
36         /**
37          * Gender of the contact
38          *
39          * @param gender the gender to set
40          */
41         public void setGender (final Gender gender);
42
43         /**
44          * Company name
45          *
46          * @return the companyName
47          */
48         public String getCompanyName ();
49
50         /**
51          * Company name
52          *
53          * @param companyName the companyName to set
54          */
55         public void setCompanyName (final String companyName);
56
57         /**
58          * First name
59          *
60          * @return the first name
61          */
62         public String getFirstName ();
63
64         /**
65          * First name
66          *
67          * @param firstName the first name to set
68          */
69         public void setFirstName (final String firstName);
70
71         /**
72          * Family name
73          *
74          * @return the familyName
75          */
76         public String getFamilyName ();
77
78         /**
79          * Family name
80          *
81          * @param familyName the familyName to set
82          */
83         public void setFamilyName (final String familyName);
84
85         /**
86          * Street
87          *
88          * @return the street
89          */
90         public String getStreet ();
91
92         /**
93          * Street
94          *
95          * @param street the street to set
96          */
97         public void setStreet (final String street);
98
99         /**
100          * House number
101          *
102          * @return the houseNumber
103          */
104         public Long getHouseNumber ();
105
106         /**
107          * House number
108          *
109          * @param houseNumber the houseNumber to set
110          */
111         public void setHouseNumber (final Long houseNumber);
112
113         /**
114          * ZIP code
115          *
116          * @return the zipCode
117          */
118         public Long getZipCode ();
119
120         /**
121          * ZIP code
122          *
123          * @param zipCode the zipCode to set
124          */
125         public void setZipCode (final Long zipCode);
126
127         /**
128          * City
129          *
130          * @return the city
131          */
132         public String getCity ();
133
134         /**
135          * City
136          *
137          * @param city the city to set
138          */
139         public void setCity (final String city);
140
141         /**
142          * Country code
143          *
144          * @return the countryCode
145          */
146         public String getCountryCode ();
147
148         /**
149          * Country code
150          *
151          * @param countryCode the countryCode to set
152          */
153         public void setCountryCode (final String countryCode);
154
155         /**
156          * Email address
157          *
158          * @return the emailAddress
159          */
160         public String getEmailAddress ();
161
162         /**
163          * Email address
164          *
165          * @param emailAddress the emailAddress to set
166          */
167         public void setEmailAddress (final String emailAddress);
168
169         /**
170          * Phone number
171          *
172          * @return the phoneNumber
173          */
174         public String getPhoneNumber ();
175
176         /**
177          * Phone number
178          *
179          * @param phoneNumber the phoneNumber to set
180          */
181         public void setPhoneNumber (final String phoneNumber);
182
183         /**
184          * Fax number
185          *
186          * @return the faxNumber
187          */
188         public String getFaxNumber ();
189
190         /**
191          * Fax number
192          *
193          * @param faxNumber the faxNumber to set
194          */
195         public void setFaxNumber (final String faxNumber);
196
197         /**
198          * Cellphone number
199          *
200          * @return the cellphoneNumber
201          */
202         public String getCellphoneNumber ();
203
204         /**
205          * Cellphone number
206          *
207          * @param cellphoneNumber the cellphoneNumber to set
208          */
209         public void setCellphoneNumber (final String cellphoneNumber);
210 }