Class SessionEvent

    • Constructor Detail

      • SessionEvent

        public SessionEvent​(int eventCode,
                            Session session)
        INTERNAL: Create the event.
    • Method Detail

      • getEventCode

        public int getEventCode()
        PUBLIC: The code of the session event being raised. This is an integer constant value from this class.
      • getProperties

        public java.util.Hashtable getProperties()
        PUBLIC: Additional properties may be added to the event.
      • getProperty

        public java.lang.Object getProperty​(java.lang.String name)
        PUBLIC: Additional properties may be added to the event.
      • getQuery

        public DatabaseQuery getQuery()
        PUBLIC: Some events may have a query associated with them (pre/postExecuteQuery).
      • getResult

        public java.lang.Object getResult()
        PUBLIC: Some events may have a result associated with them (pre/postExecuteQuery).
      • getSession

        public Session getSession()
        PUBLIC: The session in which the event is raised.
      • setEventCode

        public void setEventCode​(int eventCode)
        INTERNAL: The code of the session event being raised. This is an integer constant value from this class.
      • setProperties

        public void setProperties​(java.util.Hashtable properties)
        INTERNAL: Additional properties may be added to the event.
      • setProperty

        public void setProperty​(java.lang.String name,
                                java.lang.Object value)
        INTERNAL: Additional properties may be added to the event.
      • setQuery

        public void setQuery​(DatabaseQuery query)
        INTERNAL: Some events may have a query associated with them (pre/postExecuteQuery).
      • setResult

        public void setResult​(java.lang.Object result)
        INTERNAL: Some events may have a result associated with them (pre/postExecuteQuery).
      • setSession

        public void setSession​(Session session)
        INTERNAL: The session in which the event is raised.