]> git.mxchange.org Git - jcore.git/blobdiff - src/org/mxchange/jcore/FrameworkInterface.java
Well, if that is EJB, it sucks somehow: Logging not allowed and a complexer class...
[jcore.git] / src / org / mxchange / jcore / FrameworkInterface.java
index 222b09d7fafd9e6bd1cac2da8e6e2134f5716ffa..efefe2580394f28433b67b14416c8b6ea3dd4117 100644 (file)
@@ -16,8 +16,6 @@
  */
 package org.mxchange.jcore;
 
-import java.lang.reflect.InvocationTargetException;
-import org.apache.logging.log4j.Logger;
 import org.mxchange.jcore.application.Application;
 import org.mxchange.jcore.client.Client;
 import org.mxchange.jcore.manager.Manageable;
@@ -33,11 +31,6 @@ public interface FrameworkInterface {
         */
        public static final String I18N_BUNDLE_FILE = "org/mxchange/localization/bundle";
 
-       /*
-        * Properties file name
-        */
-       public static final String PROPERTIES_CONFIG_FILE = "config.properties";
-
        /**
         * Getter for manager
         *
@@ -52,13 +45,6 @@ public interface FrameworkInterface {
         */
        public Client getClient ();
 
-       /**
-        * Getter for logger
-        *
-        * @return Logger
-        */
-       public Logger getLogger ();
-
        /**
         * Application instance
         *
@@ -66,18 +52,6 @@ public interface FrameworkInterface {
         */
        public Application getApplication ();
 
-       /**
-        * Session id
-        * @return the sessionId
-        */
-       public String getSessionId ();
-
-       /**
-        * Session id
-        * @param sessionId the sessionId to set
-        */
-       public void setSessionId (final String sessionId);
-
        /**
         * Getter for human-readable string from given key
         *
@@ -92,16 +66,4 @@ public interface FrameworkInterface {
         * @param exception Exception to log
         */
        public void logException (final Throwable exception);
-
-       /**
-        * Checks if given boolean field is available and set to same value
-        *
-        * @param columnName Column name to check
-        * @param bool Boolean value
-        * @return Whether all conditions are met
-        * @throws java.lang.NoSuchMethodException If called method was not found
-        * @throws java.lang.IllegalAccessException If the method cannot be accessed
-        * @throws java.lang.reflect.InvocationTargetException Any other problems?
-        */
-       public boolean isFieldValueEqual (final String columnName, final boolean bool) throws NoSuchMethodException, IllegalAccessException, InvocationTargetException;
 }