Package de.hybris.platform.jalo
Class AbstractSystemCreator
- java.lang.Object
-
- de.hybris.platform.jalo.AbstractSystemCreator
-
public abstract class AbstractSystemCreator extends java.lang.ObjectBase class of all system creators. Each system creator contains a list ofDataCreators which will be executed.
To write your own system creator you must extend this class and provide your list of data creators.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringCREATE_SAMPLE_DATAprotected JspContextjspContextstatic java.lang.StringUSE_NICE_PKS
-
Constructor Summary
Constructors Constructor Description AbstractSystemCreator(JspContext jspContext)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidassureJaloSessionAvailable(JspContext jspc)protected voidlog(java.lang.String logstring)You should use this method to log output from inside your system creator.static voidlog(java.lang.String logstring, JspContext jspContext)You can use this method to log output from your jsp.static voidlogln(java.lang.String logstring, JspContext jspContext)You can use this method to log output from your jsp.
-
-
-
Field Detail
-
USE_NICE_PKS
public static final java.lang.String USE_NICE_PKS
- See Also:
- Constant Field Values
-
CREATE_SAMPLE_DATA
public static final java.lang.String CREATE_SAMPLE_DATA
- See Also:
- Constant Field Values
-
jspContext
protected JspContext jspContext
-
-
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.
-
-