Package org.zkoss.stateless.ui
Class SerializableRichletConfig
- java.lang.Object
-
- org.zkoss.stateless.ui.SerializableRichletConfig
-
- All Implemented Interfaces:
java.io.Serializable
,RichletConfig
public class SerializableRichletConfig extends java.lang.Object implements java.io.Serializable, RichletConfig
A wrapper to supportRichletConfig
serializable- Author:
- jumperchen
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SerializableRichletConfig(RichletConfig richletConfig)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getInitParameter(java.lang.String name)
Returns a String containing the value of the named initialization parameter, or null if the parameter does not exist.java.lang.Iterable<java.lang.String>
getInitParameterNames()
Returns the names of the richlet's initialization parameters as an iterable String objects (never null).WebApp
getWebApp()
Returns the web application that the richlet belongs to.
-
-
-
Constructor Detail
-
SerializableRichletConfig
public SerializableRichletConfig(RichletConfig richletConfig)
-
-
Method Detail
-
getWebApp
public WebApp getWebApp()
Description copied from interface:RichletConfig
Returns the web application that the richlet belongs to.- Specified by:
getWebApp
in interfaceRichletConfig
-
getInitParameter
public java.lang.String getInitParameter(java.lang.String name)
Description copied from interface:RichletConfig
Returns a String containing the value of the named initialization parameter, or null if the parameter does not exist.- Specified by:
getInitParameter
in interfaceRichletConfig
-
getInitParameterNames
public java.lang.Iterable<java.lang.String> getInitParameterNames()
Description copied from interface:RichletConfig
Returns the names of the richlet's initialization parameters as an iterable String objects (never null).- Specified by:
getInitParameterNames
in interfaceRichletConfig
-
-