Package nl.gx.webmanager.springmvc
Interface DelegatedControllerAware
-
- All Known Subinterfaces:
AnchorElement
,DownloadElement
,Element
,FormElement
,ForumElement
,HeadingOverviewElement
,ImageElement
,ImageMapElement
,ListElement
,MediaCollectionElement
,MediaCollectionOverviewElement
,PageCollectionElement
,PageMetaData
,QueryElement
,RichTextElement
,RichTextInlineElement
,RssFeedElement
,SearchElement
,SeparatorElement
,TableElement
,TextElement
- All Known Implementing Classes:
APIServiceImpl
,nl.gx.webmanager.cms.core.implementation.CmsItemBase
,ComponentBase
,ComponentTypeBase
,ContentIndexSearchServiceImpl
,ContentLabelsCategoryFieldAdapterImpl
,ContentUsageAdapterImpl
,DojoComponentTypeImpl
,ElementBase
,ElementComponentTypeImpl
,ExtensionSubTabFBO
,FormBindableBase
,FormComponentTypeImpl
,nl.gx.webmanager.cms.element.implementation.JcrElementBase
,nl.gx.webmanager.cms.core.implementation.JcrPageMetaDataBase
,MediaItemBase
,MediaItemComponentTypeImpl
,PageMetaDataBase
,PageMetaDataComponentTypeImpl
,PanelBase
,PanelComponentTypeImpl
,PanelTabFBO
,PanelTabset
,PresentationComponentTypeImpl
,ProfileProviderComponentTypeImpl
,SearchFacetComponentTypeImpl
,ServiceComponentTypeImpl
,ServletComponentTypeImpl
,SimpleDojoComponent
,SimpleElementComponent
,SimpleFormComponent
,SimpleMediaItemComponent
,SimpleMetaDataComponent
,SimplePanelComponent
,SimplePresentationComponent
,SimpleProfileProviderComponent
,SimpleSearchFacetComponent
,SimpleServiceComponent
,SimpleServletComponent
public interface DelegatedControllerAware
This interface can be implmented by a class to indicate that is aware of a delegated controller. Being delegated controller aware means that the class contains the setter and getter for a delegated controller. Controllers will delegate controller logic to all controllers it can resolve from entities that are delegated controller aware.- Since:
- WebManager 9.0.8
- Author:
- ivol
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DelegatedController
getDelegatedController()
Returns the Spring controller to whom controller logic must be delegatedvoid
setDelegatedController(DelegatedController controller)
Sets the Spring controller to whom controller logic must be delegated
-
-
-
Method Detail
-
setDelegatedController
void setDelegatedController(DelegatedController controller)
Sets the Spring controller to whom controller logic must be delegated- Parameters:
controller
- The controller of this entity
-
getDelegatedController
DelegatedController getDelegatedController()
Returns the Spring controller to whom controller logic must be delegated- Returns:
- The Spring controller to whom controller logic must be delegated
-
-