| java.lang.Object org.jasig.portal.channels.BaseChannel org.jasig.portal.StandaloneChannelRenderer
All known Subclasses: org.jasig.portal.channels.CSelectSystemProfile,
StandaloneChannelRenderer | public class StandaloneChannelRenderer extends BaseChannel (Code) | | StandaloneChannelRenderer is meant to be used as a base class for channels
that might be rendered outside of the standard user-layout driven scheme.
(for example CSelectSystemProfile).
author: Peter Kharchenko pkharchenko@interactivebusiness.com" version: $Revision: 42516 $ |
activeRenderers | final public static AtomicLong activeRenderers(Code) | | |
maxRenderThreads | public static AtomicLong maxRenderThreads(Code) | | |
initialize | public void initialize(Hashtable params, String channelName, boolean hasHelp, boolean hasAbout, boolean hasEdit, long timeOut, IPerson person) throws PortalException(Code) | | Initializes the channel and calls setStaticData() on the channel.
Parameters: params - a hastable of channel publish/subscribe parameters ( elements Parameters: channelName - channel name Parameters: hasHelp - determines if the channel supports "help" layout event Parameters: hasAbout - determines if the channel supports "about" layout event Parameters: hasEdit - determines if the channel supports "edit" layout event Parameters: timeOut - channel timeout value in milliseconds Parameters: person - a user IPerson object |
prepare | public void prepare(HttpServletRequest req) throws Exception(Code) | | This request will cause setRuntimeData() method called on the channel. If this method is invoked,
the render() method, which usually invokes setRuntimeData() method will omit the call.
Parameters: req - http request |
render | public void render(HttpServletRequest req, HttpServletResponse res) throws Throwable(Code) | | This method will output channel content into the HttpServletResponse's
out stream. Note that setRuntimeData() method is called only if there was
no prior call to prepare() method.
Parameters: req - http request Parameters: res - http response |
|
|