public abstract class AbstractLinkBuilderFactory extends BaseFactory implements LinkBuilderFactory
Abstract base class for LinkBuilderFactory implementations. This is provided as a convenience to developers who wish to build their own custom LinkBuilderFactory variations.
frameworkUtils, webFrameworkServiceRegistry| Constructor and Description |
|---|
AbstractLinkBuilderFactory() |
| Modifier and Type | Method and Description |
|---|---|
ModelObjectService |
getModelObjectService()
This method is supplied so that subclasses can get a reference to the
ModelObjectService
that is required to instantiate a AbstractLinkBuilder. |
ResourceService |
getResourceService()
This method is supplied so that subclasses can get a reference to the
ResourceService
that is required to instantiate a AbstractLinkBuilder. |
WebFrameworkConfigElement |
getWebFrameworkConfigElement()
This method is supplied so that subclasses can get a reference to the
WebFrameworkConfigElement
that is required to instantiate a AbstractLinkBuilder. |
abstract LinkBuilder |
newInstance()
Extending classes must implement this method to instantiate the associated class of
LinkBuilder. |
void |
setModelObjectService(ModelObjectService modelObjectService)
This method is provided to allow Spring to set the
ModelObjectService as a bean property. |
void |
setResourceService(ResourceService resourceService)
This method is provided to allow Spring to set the
ResourceService as a bean property. |
void |
setWebFrameworkConfigElement(WebFrameworkConfigElement webFrameworkConfigElement)
This method is provided to allow Spring to set the
WebFrameworkConfigElement as a bean property. |
getApplicationContext, getObjectService, getServiceRegistry, getWebFrameworkConfiguration, setApplicationContext, setFrameworkUtils, setServiceRegistrypublic abstract LinkBuilder newInstance()
Extending classes must implement this method to instantiate the associated class of LinkBuilder.
newInstance in interface LinkBuilderFactorypublic WebFrameworkConfigElement getWebFrameworkConfigElement()
This method is supplied so that subclasses can get a reference to the WebFrameworkConfigElement
that is required to instantiate a AbstractLinkBuilder.
public ModelObjectService getModelObjectService()
This method is supplied so that subclasses can get a reference to the ModelObjectService
that is required to instantiate a AbstractLinkBuilder.
public ResourceService getResourceService()
This method is supplied so that subclasses can get a reference to the ResourceService
that is required to instantiate a AbstractLinkBuilder.
getResourceService in class BaseFactorypublic void setWebFrameworkConfigElement(WebFrameworkConfigElement webFrameworkConfigElement)
WebFrameworkConfigElement as a bean property.webFrameworkConfigElement - WebFrameworkConfigElementpublic void setModelObjectService(ModelObjectService modelObjectService)
ModelObjectService as a bean property.modelObjectService - ModelObjectServicepublic void setResourceService(ResourceService resourceService)
ResourceService as a bean property.resourceService - ResourceServiceCopyright © 2005–2016 Alfresco Software. All rights reserved.