| |
|
| com.sun.portal.providers.containers.ContainerProvider
All known Subclasses: com.sun.portal.providers.containers.JSPContainerProviderAdapter, com.sun.portal.providers.containers.ContainerProviderAdapter,
ContainerProvider | public interface ContainerProvider (Code) | | ContainerProvider defines the interface for
implementing a container provider.
A container provider is a provider that generates its views primarily
by being a client of other provider objects. Here, a container provider
is defined as a provider that has a selected and available channels list,
and allows getting and setting of these lists.
Selected channels are those that are visible on the portal page.
Available channels are those that are available to
be activated on the portal page.
A selected channels list should only contain channels that are visisble
when the containers displays its main view.
See Also: com.sun.portal.providers.Provider |
Method Summary | |
public List | getAvailableChannels() Gets the list of available channel names.
Available Channels are channels that are available to be added to the portal page. | public List | getSelectedChannels() Gets the list of selected channel names.
Selected Channels are channels that are visible on the portal page. | public int[] | getSupportedWindowStates() Gets the supported window states. | public int | getWindowState(String channelName) Gets the window state of the channel.
This method returns the window state for the channel passed in.
Parameters: channelName - channel for which window state is requested. | public void | setAvailableChannels(List avail) Sets the list of available channel names. | public void | setSelectedChannels(List sel) Sets the list of selected channel names. | public void | setWindowState(String channelName, int windowState) Sets the window state of the channel. |
getAvailableChannels | public List getAvailableChannels() throws ProviderException(Code) | | Gets the list of available channel names.
Available Channels are channels that are available to be added to the portal page.
The list of available channel names, a list of string names. exception: ProviderException - If the list of channel names cannot bereturned. |
getSelectedChannels | public List getSelectedChannels() throws ProviderException(Code) | | Gets the list of selected channel names.
Selected Channels are channels that are visible on the portal page.
The list of selected channel names, a list of string names. exception: ProviderException - If the list of channel names cannot bereturned. |
|
|
|