Uses of Class
org.apache.turbine.services.BaseInitable

Packages that use BaseInitable
org.apache.turbine.services Contains the Service framework for Turbine. 
org.apache.turbine.services.assemblerbroker Assemblerbroker Service looks for action, screen, page, layout classes based on class fragments. 
org.apache.turbine.services.avaloncomponent Avalon based component service to provide access to avalon components for Turbine applications. 
org.apache.turbine.services.cache Global caching service for java objects. 
org.apache.turbine.services.component   
org.apache.turbine.services.crypto Contains the Crypto Service providing you with a variety of Crypto algorithms. 
org.apache.turbine.services.factory Contains a generic factory for generating new objects. 
org.apache.turbine.services.intake The intake service can validate user input from HTML forms. 
org.apache.turbine.services.jsp JSP Service is used to provide Turbine with a Java Server page (JSP) based view. 
org.apache.turbine.services.localization This service provides access and tools for multilingual applications in Turbine. 
org.apache.turbine.services.mimetype Provides mapping between MIME types and their corresponding file extensions. 
org.apache.turbine.services.naming Naming Service provides access to JNDI naming contexts. 
org.apache.turbine.services.pool The pool service can keep a stock of objects and recycle them. 
org.apache.turbine.services.pull Provides application tools that are put into the context of a template view. 
org.apache.turbine.services.rundata Rundata Service provides a factory for the request cycle data objects. 
org.apache.turbine.services.schedule The scheduler service can run tasks in the background. 
org.apache.turbine.services.security The security service can be used to authenticate users based on database information. 
org.apache.turbine.services.security.db A security service implementation that used an SQL database for authentication. 
org.apache.turbine.services.security.ldap An LDAP based security service implementation. 
org.apache.turbine.services.security.torque A security service implementation based on Torque generated peer classes. 
org.apache.turbine.services.servlet Provides access to various resources from the web container. 
org.apache.turbine.services.session The session service allows you to access session information of the servlet container. 
org.apache.turbine.services.template Template Service maps template references to a view service and a template name. 
org.apache.turbine.services.uniqueid Returns unique identifiers for session tracking, cookies etc. 
org.apache.turbine.services.upload The upload service processes data uploaded by the user from the browser. 
org.apache.turbine.services.velocity Velocity Service is used to provide Turbine with a Velocity based view. 
org.apache.turbine.services.xmlrpc The XML-RPC Service can be used to communicate with a remote application. 
org.apache.turbine.services.xslt The XSLT Service can be used to translate XML documents into various output formats. 
 

Uses of BaseInitable in org.apache.turbine.services
 

Subclasses of BaseInitable in org.apache.turbine.services
 class BaseService
          This class is a generic implementation of Service.
 class TurbineBaseService
          This class provides a Service implementation that Services used in Turbine are required to extend.
 

Uses of BaseInitable in org.apache.turbine.services.assemblerbroker
 

Subclasses of BaseInitable in org.apache.turbine.services.assemblerbroker
 class TurbineAssemblerBrokerService
          TurbineAssemblerBrokerService allows assemblers (like screens, actions and layouts) to be loaded from one or more AssemblerFactory classes.
 

Uses of BaseInitable in org.apache.turbine.services.avaloncomponent
 

Subclasses of BaseInitable in org.apache.turbine.services.avaloncomponent
 class TurbineAvalonComponentService
          An implementation of AvalonComponentService which loads all the components given in the TurbineResources.properties File.
 

Uses of BaseInitable in org.apache.turbine.services.cache
 

Subclasses of BaseInitable in org.apache.turbine.services.cache
 class TurbineGlobalCacheService
          This Service functions as a Global Cache.
 

Uses of BaseInitable in org.apache.turbine.services.component
 

Subclasses of BaseInitable in org.apache.turbine.services.component
 class TurbineComponentService
          Deprecated. torque is now loaded using the AvalonComponentService
 

Uses of BaseInitable in org.apache.turbine.services.crypto
 

Subclasses of BaseInitable in org.apache.turbine.services.crypto
 class TurbineCryptoService
          An implementation of CryptoService that uses either supplied crypto Algorithms (provided in Turbine.Services.properties) or tries to get them via the normal java mechanisms if this fails.
 

Uses of BaseInitable in org.apache.turbine.services.factory
 

Subclasses of BaseInitable in org.apache.turbine.services.factory
 class TurbineFactoryService
          The Factory Service instantiates objects using specified class loaders.
 

Uses of BaseInitable in org.apache.turbine.services.intake
 

Subclasses of BaseInitable in org.apache.turbine.services.intake
 class TurbineIntakeService
          This service provides access to input processing objects based on an XML specification.
 

Uses of BaseInitable in org.apache.turbine.services.jsp
 

Subclasses of BaseInitable in org.apache.turbine.services.jsp
 class TurbineJspService
          This is a Service that can process JSP templates from within a Turbine screen.
 

Uses of BaseInitable in org.apache.turbine.services.localization
 

Subclasses of BaseInitable in org.apache.turbine.services.localization
 class TurbineLocalizationService
          This class is the single point of access to all localization resources.
 

Uses of BaseInitable in org.apache.turbine.services.mimetype
 

Subclasses of BaseInitable in org.apache.turbine.services.mimetype
 class TurbineMimeTypeService
          The MimeType Service maintains mappings between MIME types and the corresponding file name extensions, and between locales and character encodings.
 

Uses of BaseInitable in org.apache.turbine.services.naming
 

Subclasses of BaseInitable in org.apache.turbine.services.naming
 class TurbineNamingService
          This class is the default implementation of NamingService, which provides JNDI naming contexts.
 

Uses of BaseInitable in org.apache.turbine.services.pool
 

Subclasses of BaseInitable in org.apache.turbine.services.pool
 class TurbinePoolService
          The Pool Service extends the Factory Service by adding support for pooling instantiated objects.
 

Uses of BaseInitable in org.apache.turbine.services.pull
 

Subclasses of BaseInitable in org.apache.turbine.services.pull
 class TurbinePullService
          This is the concrete implementation of the Turbine Pull Service.
 

Uses of BaseInitable in org.apache.turbine.services.rundata
 

Subclasses of BaseInitable in org.apache.turbine.services.rundata
 class TurbineRunDataService
          The RunData Service provides the implementations for RunData and related interfaces required by request processing.
 

Uses of BaseInitable in org.apache.turbine.services.schedule
 

Subclasses of BaseInitable in org.apache.turbine.services.schedule
 class TurbineNonPersistentSchedulerService
          Service for a cron like scheduler that uses the TurbineResources.properties file instead of the database.
 class TurbineSchedulerService
          Service for a cron like scheduler.
 

Uses of BaseInitable in org.apache.turbine.services.security
 

Subclasses of BaseInitable in org.apache.turbine.services.security
 class BaseSecurityService
          This is a common subset of SecurityService implementation.
 

Uses of BaseInitable in org.apache.turbine.services.security.db
 

Subclasses of BaseInitable in org.apache.turbine.services.security.db
 class DBSecurityService
          An implementation of SecurityService that uses a database as backend.
 

Uses of BaseInitable in org.apache.turbine.services.security.ldap
 

Subclasses of BaseInitable in org.apache.turbine.services.security.ldap
 class LDAPSecurityService
          An implementation of SecurityService that uses LDAP as a backend.
 

Uses of BaseInitable in org.apache.turbine.services.security.torque
 

Subclasses of BaseInitable in org.apache.turbine.services.security.torque
 class TorqueSecurityService
          An implementation of SecurityService that uses torque objects.
 

Uses of BaseInitable in org.apache.turbine.services.servlet
 

Subclasses of BaseInitable in org.apache.turbine.services.servlet
 class TurbineServletService
          This class provides a context service when the application is run in a ServletContainer.
 

Uses of BaseInitable in org.apache.turbine.services.session
 

Subclasses of BaseInitable in org.apache.turbine.services.session
 class TurbineSessionService
          The SessionService allows thread-safe access to the current sessions of the current context.
 

Uses of BaseInitable in org.apache.turbine.services.template
 

Subclasses of BaseInitable in org.apache.turbine.services.template
 class BaseTemplateEngineService
          The base implementation of Turbine TemplateEngineService.
 class TurbineTemplateService
          This service provides a method for mapping templates to their appropriate Screens or Navigations.
 

Uses of BaseInitable in org.apache.turbine.services.uniqueid
 

Subclasses of BaseInitable in org.apache.turbine.services.uniqueid
 class TurbineUniqueIdService
           This is an implementation of UniqueIdService.
 

Uses of BaseInitable in org.apache.turbine.services.upload
 

Subclasses of BaseInitable in org.apache.turbine.services.upload
 class BaseUploadService
           This class is a base implementation of UploadService.
 class TurbineUploadService
           This class is an implementation of UploadService.
 

Uses of BaseInitable in org.apache.turbine.services.velocity
 

Subclasses of BaseInitable in org.apache.turbine.services.velocity
 class TurbineVelocityService
          This is a Service that can process Velocity templates from within a Turbine Screen.
 

Uses of BaseInitable in org.apache.turbine.services.xmlrpc
 

Subclasses of BaseInitable in org.apache.turbine.services.xmlrpc
 class TurbineXmlRpcService
          This is a service which will make an xml-rpc call to a remote server.
 

Uses of BaseInitable in org.apache.turbine.services.xslt
 

Subclasses of BaseInitable in org.apache.turbine.services.xslt
 class TurbineXSLTService
          Implementation of the Turbine XSLT Service.
 



Copyright © 2000-2005 Apache Software Foundation. All Rights Reserved.