org.apache.cocoon.rest.controller
Class SpringRESTController
java.lang.Object
org.apache.cocoon.rest.controller.SpringRESTController
- All Implemented Interfaces:
- Controller, ApplicationContextAware
public class SpringRESTController
- extends Object
- implements Controller, ApplicationContextAware
This controller is responsible for the execution of instances of REST controller beans. Note that
each controller implementation must be available as Spring bean. For that purpose you can use the
RESTController
annotation and load all beans from a particular package automatically. See
http://static.springframework.org/spring/docs/2.5.x/reference/beans.html#beans-classpath-scanning
for details.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
SpringRESTController
public SpringRESTController()
getCacheKey
public CacheKey getCacheKey()
- Description copied from interface:
Controller
- This method returns the cache key that might be available after the setup phase.
- Specified by:
getCacheKey
in interface Controller
- Returns:
- A
CacheKey
for the controller or null
if no cache key can be
calculated.
setup
public void setup(String controllerName,
Map<String,Object> inputParameters,
Map<String,? extends Object> configuration)
- Specified by:
setup
in interface Controller
execute
public void execute(OutputStream outputStream)
- Specified by:
execute
in interface Controller
setAnnotationCollector
public void setAnnotationCollector(AnnotationCollector annotationCollector)
setApplicationContext
public void setApplicationContext(ApplicationContext applicationContext)
throws BeansException
-
- Specified by:
setApplicationContext
in interface ApplicationContextAware
- Throws:
BeansException
- See Also:
ApplicationContextAware.setApplicationContext(org.springframework.context.ApplicationContext)
setMethodDelegator
public void setMethodDelegator(MethodDelegator methodDelegator)
unpackProxy
public static <T> T unpackProxy(T proxy)
throws Exception
- Throws:
Exception
Copyright © 2008-2011 The Apache Software Foundation. All Rights Reserved.