]> git.mxchange.org Git - addressbook-lib.git/blob - src/org/mxchange/addressbook/facade/contact/ContactFacade.java
Continued:
[addressbook-lib.git] / src / org / mxchange / addressbook / facade / contact / ContactFacade.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.addressbook.facade.contact;
18
19 import java.io.IOException;
20 import java.lang.reflect.InvocationTargetException;
21 import java.sql.SQLException;
22 import org.mxchange.jcontacts.contact.Contact;
23 import org.mxchange.jcontacts.contact.gender.Gender;
24 import org.mxchange.jcontacts.exceptions.ContactAlreadyAddedException;
25 import org.mxchange.jcore.facade.Facade;
26
27 /**
28  * An interface for addressbook contact manager
29  * <p>
30  * @author Roland Haeder
31  */
32 public interface ContactFacade extends Facade {
33
34         /**
35          * Adds given Contact instance to list
36          * <p>
37          * @param contact Contact instance to add
38          * @throws org.mxchange.jcontacts.exceptions.ContactAlreadyAddedException If the contact is already added
39          */
40         public void addContact (final Contact contact) throws ContactAlreadyAddedException;
41
42         /**
43          * Let the user add a new other address
44          */
45         public void doAddOtherAddress ();
46
47         /**
48          * The user can change address data, like street, ZIP code, city and country
49          * of given Contact instance.
50          * <p>
51          * @param contact Instance to change data
52          */
53         public void doChangeAddressData (final Contact contact);
54
55         /**
56          * The user can change name data, like gender, surname, family name and
57          * company name (if business contact).
58          * <p>
59          * @param contact Instance to change data
60          */
61         public void doChangeNameData (final Contact contact);
62
63         /**
64          * Let the user change other address
65          */
66         public void doChangeOtherAddress ();
67
68         /**
69          * The user can change other data, like phone numbers or comments.
70          * <p>
71          * @param contact Instance to change data
72          */
73         public void doChangeOtherData (final Contact contact);
74
75         /**
76          * Let the user change own data
77          * <p>
78          * @throws java.sql.SQLException If an SQL error occurs
79          * @throws java.io.IOException If an IO error occurs
80          * @throws java.lang.NoSuchMethodException If a method cannot be found
81          * @throws java.lang.IllegalAccessException If a method is not accessible
82          * @throws java.lang.reflect.InvocationTargetException Any other problems?
83          */
84         public void doChangeOwnData () throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException;
85
86         /**
87          * Let the user delete other address
88          */
89         public void doDeleteOtherAddress ();
90
91         /**
92          * Asks user for own data
93          * <p>
94          * @throws org.mxchange.jcontacts.exceptions.ContactAlreadyAddedException If own contact is already added
95          * @throws java.io.IOException If an IO error was found
96          */
97         public void doEnterOwnData () throws ContactAlreadyAddedException, IOException;
98
99         /**
100          * List all contacts
101          */
102         public void doListContacts ();
103
104         /**
105          * Searches address book for a contact
106          */
107         public void doSearchContacts ();
108
109         /**
110          * Allows the user to enter own cellphone number.
111          * <p>
112          * @return Cellphone number
113          */
114         public String enterOwnCellNumber ();
115
116         /**
117          * Allows the user to enter own city name.
118          * <p>
119          * @return City name
120          */
121         public String enterOwnCity ();
122
123         /**
124          * Allows the user to enter comment for own entry.
125          * <p>
126          * @return Comment
127          */
128         public String enterOwnComment ();
129
130         /**
131          * Allows the user to enter own company name.
132          * <p>
133          * @return Company name
134          */
135         public String enterOwnCompanyName ();
136
137         /**
138          * Allows the user to enter own country code.
139          * <p>
140          * @return Country code
141          */
142         public String enterOwnCountryCode ();
143
144         /**
145          * Allows the user to enter own email address.
146          * <p>
147          * @return Email address
148          */
149         public String enterOwnEmailAddress ();
150
151         /**
152          * Allows the user to enter own family name.
153          * <p>
154          * @return Family name
155          */
156         public String enterOwnFamilyName ();
157
158         /**
159          * Allows the user to enter own fax number.
160          * <p>
161          * @return Fax number
162          */
163         public String enterOwnFaxNumber ();
164
165         /**
166          * Allows the user to enter own surname.
167          * <p>
168          * @return Surname
169          */
170         public String enterOwnFirstName ();
171
172         /**
173          * Allows the user to enter own gender.
174          * <p>
175          * @return Gender
176          */
177         public Gender enterOwnGender ();
178
179         /**
180          * Allows the user to enter own phone number.
181          * <p>
182          * @return Phone number
183          */
184         public String enterOwnPhoneNumber ();
185
186         /**
187          * Allows the user to enter own street and house number.
188          * <p>
189          * @return Street and house number
190          */
191         public String enterOwnStreet ();
192
193         /**
194          * Allows the user to enter own ZIP code.
195          * <p>
196          * @return ZIP code
197          */
198         public int enterOwnZipCode ();
199
200         /**
201          * Getter for column count
202          * <p>
203          * @return Column count TODO: This is needed for TableModel in Swing
204          */
205         public int getColumnCount ();
206
207         /**
208          * Getter for column name at given index.
209          * <p>
210          * @param columnIndex Column index
211          * @return Database column name TODO: This is needed for TableModel in Swing
212          */
213         public String getColumnName (final int columnIndex);
214
215         /**
216          * Getter for translated column name at given index.
217          * <p>
218          * @param columnIndex Column index
219          * @return Human-readable column name TODO: This is needed for TableModel in
220          * Swing
221          */
222         public String getTranslatedColumnName (final int columnIndex);
223
224         /**
225          * Somewhat "getter" for value from given row and column index
226          * <p>
227          * @param rowIndex Row index
228          * @param columnIndex Column index
229          * @return Value from given row/column
230          * @throws java.lang.NoSuchMethodException If the method was not found
231          * @throws java.lang.IllegalAccessException If the accessed method was not public
232          * @throws java.lang.reflect.InvocationTargetException Something else
233          * happened? TODO: This is needed for TableModel in Swing
234          */
235         public Object getValueFromRowColumn (final int rowIndex, final int columnIndex) throws NoSuchMethodException, IllegalAccessException, InvocationTargetException;
236
237         /**
238          * Checks whether own contact is already added by checking all entries for
239          * isOwnContact flag
240          * <p>
241          * @return Whether own contact is already added
242          * @throws java.io.IOException If an IO error occurs
243          */
244         public boolean isOwnContactAdded () throws IOException;
245
246         /**
247          * Adds given contact to address book
248          * <p>
249          * @param contact Contact being added TODO Add check for book size
250          */
251         public void registerContact (final Contact contact);
252 }