Class AbstractSystemCreator


  • public abstract class AbstractSystemCreator
    extends java.lang.Object
    Base class of all system creators. Each system creator contains a list of DataCreator s which will be executed.
    To write your own system creator you must extend this class and provide your list of data creators.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected void assureJaloSessionAvailable​(JspContext jspc)  
      protected void log​(java.lang.String logstring)
      You should use this method to log output from inside your system creator.
      static void log​(java.lang.String logstring, JspContext jspContext)
      You can use this method to log output from your jsp.
      static void logln​(java.lang.String logstring, JspContext jspContext)
      You can use this method to log output from your jsp.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • AbstractSystemCreator

        public AbstractSystemCreator​(JspContext jspContext)
    • Method Detail

      • assureJaloSessionAvailable

        protected void assureJaloSessionAvailable​(JspContext jspc)
      • log

        protected void log​(java.lang.String logstring)
        You should use this method to log output from inside your system creator. Main log stream is the 'systemcreator' topic of the System log interface. if the jsp context is set correctly a response is also sent to the jspstream.
      • log

        public static void log​(java.lang.String logstring,
                               JspContext jspContext)
        You can use this method to log output from your jsp. Main log stream is the 'systemcreator' topic of the System log interface.
      • logln

        public static void logln​(java.lang.String logstring,
                                 JspContext jspContext)
        You can use this method to log output from your jsp. Main log stream is the 'systemcreator' topic of the System log interface.