Package org.apache.turbine.services
Interface Service
- 
- All Superinterfaces:
 Initable
- All Known Subinterfaces:
 AssemblerBrokerService,AvalonComponentService,JsonRpcService,JspService,NamingService,PullService,RunDataService,ScheduleService,SecurityService,ServletService,SessionService,TemplateService,UIService,UniqueIdService,URLMapperService,VelocityService
- All Known Implementing Classes:
 AbstractSchedulerService,BaseService,BaseTemplateEngineService,BaseUnicastRemoteService,DefaultSecurityService,QuartzSchedulerService,TorqueSchedulerService,TurbineAssemblerBrokerService,TurbineBaseService,TurbineJsonRpcService,TurbineJspService,TurbineNamingService,TurbineNonPersistentSchedulerService,TurbinePullService,TurbineRunDataService,TurbineServletService,TurbineSessionService,TurbineTemplateService,TurbineUIService,TurbineUniqueIdService,TurbineURLMapperService,TurbineVelocityService,TurbineYaafiComponentService
public interface Service extends Initable
ServicesareInitablesthat have a name, and a set of properties.- Version:
 - $Id$
 - Author:
 - Greg Ritter, Brett McLaughlin, Kevin Burton, Rafal Krzewski, Daniel Rall
 
 
- 
- 
Field Summary
Fields Modifier and Type Field Description static StringSERVICE_NAMEThe name of this service. 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.apache.commons.configuration2.ConfigurationgetConfiguration()Returns the Configuration of this Service.StringgetName()Returns the name of this Service.PropertiesgetProperties()Returns the Properties of this Service.voidsetName(String name)ServiceBroker uses this method to pass a Service its name.voidsetServiceBroker(ServiceBroker broker)Provides a Service with a reference to the ServiceBroker that instantiated this object, so that it can ask for its properties and access other Services. 
 - 
 
- 
- 
Field Detail
- 
SERVICE_NAME
static final String SERVICE_NAME
The name of this service.- See Also:
 - Constant Field Values
 
 
 - 
 
- 
Method Detail
- 
setServiceBroker
void setServiceBroker(ServiceBroker broker)
Provides a Service with a reference to the ServiceBroker that instantiated this object, so that it can ask for its properties and access other Services.- Parameters:
 broker- The ServiceBroker that instantiated this object.
 
- 
setName
void setName(String name)
ServiceBroker uses this method to pass a Service its name. Service uses its name to ask the broker for an apropriate set of Properties.- Parameters:
 name- The name of this Service.
 
- 
getProperties
Properties getProperties()
Returns the Properties of this Service. Every Service has at least one property, which is "classname", containing the name of the class implementing this service. Note that the service may chose to alter its properties, therefore they may be different from those returned by ServiceBroker.- Returns:
 - The properties of this Service.
 
 
- 
getConfiguration
org.apache.commons.configuration2.Configuration getConfiguration()
Returns the Configuration of this Service. Every Service has at least one property, which is "classname", containing the name of the class implementing this service. Note that the service may chose to alter its configuration, therefore they may be different from those returned by ServiceBroker.- Returns:
 - The Configuration of this Service.
 
 
 - 
 
 -