]> git.mxchange.org Git - jfinancials-lib.git/blob - Addressbook/src/org/mxchange/addressbook/FrameworkInterface.java
ae1c570b247ab52c1b12c9c3b6777c8041bd585a
[jfinancials-lib.git] / Addressbook / src / org / mxchange / addressbook / FrameworkInterface.java
1 /*\r
2  * Copyright (C) 2015 KLC\r
3  *\r
4  * This program is free software: you can redistribute it and/or modify\r
5  * it under the terms of the GNU General Public License as published by\r
6  * the Free Software Foundation, either version 3 of the License, or\r
7  * (at your option) any later version.\r
8  *\r
9  * This program is distributed in the hope that it will be useful,\r
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
12  * GNU General Public License for more details.\r
13  *\r
14  * You should have received a copy of the GNU General Public License\r
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.\r
16  */\r
17 package org.mxchange.addressbook;\r
18 \r
19 import org.mxchange.addressbook.application.Application;\r
20 import org.mxchange.addressbook.client.Client;\r
21 import org.mxchange.addressbook.manager.contact.ManageableContact;\r
22 \r
23 /**\r
24  *\r
25  * @author KLC\r
26  */\r
27 public interface FrameworkInterface {\r
28 \r
29     /**\r
30      * Getter for contact manager\r
31      * @return Contact manager instance\r
32      */\r
33     public ManageableContact getContactManager();\r
34 \r
35     /**\r
36      * Client instance\r
37      * \r
38      * @return the client\r
39      */\r
40     public Client getClient ();\r
41 \r
42     /**\r
43      * Application instance\r
44      * \r
45      * @return the application\r
46      */\r
47     public Application getApplication ();\r
48 }\r