]> git.mxchange.org Git - jcore.git/blobdiff - src/org/mxchange/jcore/FrameworkInterface.java
Changed to SortedSet to keep ordering
[jcore.git] / src / org / mxchange / jcore / FrameworkInterface.java
index 0e44d7ee5dbbef87360391c5ef49262cad552c29..222b09d7fafd9e6bd1cac2da8e6e2134f5716ffa 100644 (file)
@@ -66,6 +66,18 @@ 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
         *
@@ -91,18 +103,5 @@ public interface FrameworkInterface {
         * @throws java.lang.IllegalAccessException If the method cannot be accessed
         * @throws java.lang.reflect.InvocationTargetException Any other problems?
         */
-       public boolean isValueEqual (final String columnName, final boolean bool) throws NoSuchMethodException, IllegalAccessException, InvocationTargetException;
-
-       /**
-        * Some "getter for a value from given column name. This name will be
-        * translated into a method name and then this method is called.
-        *
-        * @param columnName Column name
-        * @return Value from field
-        * @throws IllegalArgumentException Some implementations may throw this
-        * @throws java.lang.NoSuchMethodException If the invoked method was not found
-        * @throws java.lang.IllegalAccessException If the method cannot be accessed
-        * @throws java.lang.reflect.InvocationTargetException Any other problems?
-        */
-       public Object getValueFromColumn (final String columnName) throws IllegalArgumentException, NoSuchMethodException, IllegalAccessException, InvocationTargetException;
+       public boolean isFieldValueEqual (final String columnName, final boolean bool) throws NoSuchMethodException, IllegalAccessException, InvocationTargetException;
 }