org.jboss.portal.portlet.container
Class ContainerPortletInvoker

java.lang.Object
  extended by org.jboss.portal.portlet.PortletInvokerInterceptor
      extended by org.jboss.portal.portlet.container.ContainerPortletInvoker
All Implemented Interfaces:
PortletInvoker

public class ContainerPortletInvoker
extends PortletInvokerInterceptor

An implementation of portlet invoker that makes a call to a portlet container.

Version:
$Revision: 7226 $
Author:
Julien Viet

Field Summary
static java.lang.String PORTLET_CONTAINER
          The key under which the portlet container is stored in the request scope of the invocation.
 
Constructor Summary
ContainerPortletInvoker()
           
 
Method Summary
 void addPortletContainer(PortletContainer portletContainer)
           
 PortletContext createClone(PortletContext portletContext)
          Clone a portlet.
 java.util.List<DestroyCloneFailure> destroyClones(java.util.List<PortletContext> portletContexts)
          Destroy a cloned portlet.
 Portlet getPortlet(PortletContext portletContext)
          Get information about a specific portlet.
 java.util.Set<Portlet> getPortlets()
          Return the set of portlet exposed.
 PropertyMap getProperties(PortletContext portletContext)
          Return all the properties of the specified portlet.
 PropertyMap getProperties(PortletContext portletContext, java.util.Set<java.lang.String> keys)
          Return a subset of the properties of the specified portlet.
 PortletInvocationResponse invoke(PortletInvocation invocation)
          Invoke an operation on a specific portlet.
 void removePortletContainer(PortletContainer portletContainer)
           
 PortletContext setProperties(PortletContext portletContext, PropertyChange[] changes)
          Set the properties on the specified portlet.
 
Methods inherited from class org.jboss.portal.portlet.PortletInvokerInterceptor
getNext, setNext
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

PORTLET_CONTAINER

public static final java.lang.String PORTLET_CONTAINER
The key under which the portlet container is stored in the request scope of the invocation.

See Also:
Constant Field Values
Constructor Detail

ContainerPortletInvoker

public ContainerPortletInvoker()
Method Detail

addPortletContainer

public void addPortletContainer(PortletContainer portletContainer)

removePortletContainer

public void removePortletContainer(PortletContainer portletContainer)

getPortlets

public java.util.Set<Portlet> getPortlets()
Description copied from interface: PortletInvoker
Return the set of portlet exposed.

Specified by:
getPortlets in interface PortletInvoker
Overrides:
getPortlets in class PortletInvokerInterceptor
Returns:
the set of exposed portlets

getPortlet

public Portlet getPortlet(PortletContext portletContext)
                   throws java.lang.IllegalArgumentException,
                          PortletInvokerException
Description copied from interface: PortletInvoker
Get information about a specific portlet.

Specified by:
getPortlet in interface PortletInvoker
Overrides:
getPortlet in class PortletInvokerInterceptor
Parameters:
portletContext - the portlet context in the scope of this invoker
Returns:
the PortletInfo for the specified portlet
Throws:
java.lang.IllegalArgumentException - if the portlet context is null
PortletInvokerException - a portlet invoker exception

invoke

public PortletInvocationResponse invoke(PortletInvocation invocation)
                                 throws PortletInvokerException,
                                        org.jboss.portal.common.invocation.InvocationException
Description copied from interface: PortletInvoker
Invoke an operation on a specific portlet.

Specified by:
invoke in interface PortletInvoker
Overrides:
invoke in class PortletInvokerInterceptor
Parameters:
invocation - the portlet invocation
Returns:
the invocation response
Throws:
PortletInvokerException - a portlet invoker exception
org.jboss.portal.common.invocation.InvocationException

getProperties

public PropertyMap getProperties(PortletContext portletContext,
                                 java.util.Set<java.lang.String> keys)
                          throws java.lang.IllegalArgumentException,
                                 PortletInvokerException,
                                 java.lang.UnsupportedOperationException
Description copied from interface: PortletInvoker
Return a subset of the properties of the specified portlet.

Specified by:
getProperties in interface PortletInvoker
Overrides:
getProperties in class PortletInvokerInterceptor
Parameters:
portletContext - the portlet context
keys - the set of keys to retrieve
Returns:
the properties
Throws:
java.lang.IllegalArgumentException - if the portletContext or the keys arguments are null
PortletInvokerException - a portlet invoker exception
java.lang.UnsupportedOperationException - if the invoker does not support this operation

getProperties

public PropertyMap getProperties(PortletContext portletContext)
                          throws java.lang.IllegalArgumentException,
                                 PortletInvokerException,
                                 java.lang.UnsupportedOperationException
Description copied from interface: PortletInvoker
Return all the properties of the specified portlet.

Specified by:
getProperties in interface PortletInvoker
Overrides:
getProperties in class PortletInvokerInterceptor
Parameters:
portletContext - the portlet context
Returns:
the properties
Throws:
java.lang.IllegalArgumentException - if the portletContext is null
PortletInvokerException - a portlet invoker exception
java.lang.UnsupportedOperationException - if the invoker does not support this operation

createClone

public PortletContext createClone(PortletContext portletContext)
                           throws java.lang.IllegalArgumentException,
                                  PortletInvokerException,
                                  java.lang.UnsupportedOperationException
Description copied from interface: PortletInvoker
Clone a portlet.

Specified by:
createClone in interface PortletInvoker
Overrides:
createClone in class PortletInvokerInterceptor
Parameters:
portletContext - the portlet context to clone
Returns:
the clone id
Throws:
java.lang.IllegalArgumentException - if the portletId is null
PortletInvokerException - a portlet invoker exception
java.lang.UnsupportedOperationException - if the invoker does not support this operation

destroyClones

public java.util.List<DestroyCloneFailure> destroyClones(java.util.List<PortletContext> portletContexts)
                                                  throws java.lang.IllegalArgumentException,
                                                         PortletInvokerException,
                                                         java.lang.UnsupportedOperationException
Description copied from interface: PortletInvoker
Destroy a cloned portlet.

Specified by:
destroyClones in interface PortletInvoker
Overrides:
destroyClones in class PortletInvokerInterceptor
Parameters:
portletContexts - a list of portlet contexts to destroy
Returns:
a list of DestroyCloneFailure, one per clone that couldn't be destroyed
Throws:
java.lang.IllegalArgumentException - if the portletContext is null
PortletInvokerException - a portlet invoker exception
java.lang.UnsupportedOperationException - if the invoker does not support this operation

setProperties

public PortletContext setProperties(PortletContext portletContext,
                                    PropertyChange[] changes)
                             throws java.lang.IllegalArgumentException,
                                    PortletInvokerException,
                                    java.lang.UnsupportedOperationException
Description copied from interface: PortletInvoker
Set the properties on the specified portlet.

Specified by:
setProperties in interface PortletInvoker
Overrides:
setProperties in class PortletInvokerInterceptor
Parameters:
portletContext - the portlet context
changes - the changes
Returns:
the new portlet context
Throws:
java.lang.IllegalArgumentException - if the portletContext or the properties is null
PortletInvokerException - a portlet invoker exception
java.lang.UnsupportedOperationException - if the invoker does not support this operation


Copyright © 2008. All Rights Reserved.