]> git.mxchange.org Git - jcore.git/blob - src/org/mxchange/jcore/FrameworkInterface.java
Added Boolean type
[jcore.git] / src / org / mxchange / jcore / FrameworkInterface.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.jcore;
18
19 import java.lang.reflect.InvocationTargetException;
20 import org.apache.logging.log4j.Logger;
21 import org.mxchange.jcore.application.Application;
22 import org.mxchange.jcore.client.Client;
23 import org.mxchange.jcore.manager.Manageable;
24
25 /**
26  * A general interface which should be always expanded
27  *
28  * @author Roland Haeder
29  */
30 public interface FrameworkInterface {
31         /**
32          * File name (and path) for internalization bundle
33          */
34         public static final String I18N_BUNDLE_FILE = "org/mxchange/localization/bundle";
35
36         /*
37          * Properties file name
38          */
39         public static final String PROPERTIES_CONFIG_FILE = "config.properties";
40
41         /**
42          * Getter for manager
43          *
44          * @return Manager instance
45          */
46         public Manageable getManager ();
47
48         /**
49          * Client instance
50          *
51          * @return the client
52          */
53         public Client getClient ();
54
55         /**
56          * Getter for logger
57          *
58          * @return Logger
59          */
60         public Logger getLogger ();
61
62         /**
63          * Application instance
64          *
65          * @return the application
66          */
67         public Application getApplication ();
68
69         /**
70          * Getter for human-readable string from given key
71          *
72          * @param key Key to return
73          * @return Human-readable message
74          */
75         public String getMessageStringFromKey (final String key);
76
77         /**
78          * Logs given exception
79          *
80          * @param exception Exception to log
81          */
82         public void logException (final Throwable exception);
83
84         /**
85          * Checks if given boolean field is available and set to same value
86          *
87          * @param columnName Column name to check
88          * @param bool Boolean value
89          * @return Whether all conditions are met
90          * @throws java.lang.NoSuchMethodException If called method was not found
91          * @throws java.lang.IllegalAccessException If the method cannot be accessed
92          * @throws java.lang.reflect.InvocationTargetException Any other problems?
93          */
94         public boolean isFieldValueEqual (final String columnName, final boolean bool) throws NoSuchMethodException, IllegalAccessException, InvocationTargetException;
95 }