Uses of Interface
org.apache.tapestry.engine.IEngineService

Packages that use IEngineService
org.apache.tapestry Tapestry is a comprehensive web application framework, written in Java. 
org.apache.tapestry.asset Implementations of IAsset, as well as the org.apache.tapestry.asset.AssetExternalizer, used to handle private assets. 
org.apache.tapestry.engine Implementations of the IEngine interface, including the standard implementation: BaseEngine
org.apache.tapestry.form Components for implementing basic HTML Forms. 
org.apache.tapestry.html Components specific to the creation of HTML pages, including sophisticated DHTML JavaScript effects. 
org.apache.tapestry.link Components for creating links on the page that trigger application behavior when clicked. 
org.apache.tapestry.services Interfaces for Tapestry-related HiveMind services. 
org.apache.tapestry.services.impl   
 

Uses of IEngineService in org.apache.tapestry
 

Methods in org.apache.tapestry that return IEngineService
 IEngineService IRequestCycle.getService()
          Returns the service which initiated this request cycle.
 IEngineService IEngine.getService(java.lang.String name)
          Deprecated. To be removed in 4.1. Engine services can now be injected.
 

Uses of IEngineService in org.apache.tapestry.asset
 

Classes in org.apache.tapestry.asset that implement IEngineService
 class AssetService
          A service for building URLs to and accessing IAssets.
 

Methods in org.apache.tapestry.asset with parameters of type IEngineService
 void ClasspathAssetFactory.setAssetService(IEngineService assetService)
           
 

Constructors in org.apache.tapestry.asset with parameters of type IEngineService
PrivateAsset(org.apache.hivemind.util.ClasspathResource resourceLocation, IEngineService assetService, org.apache.hivemind.Location location)
           
 

Uses of IEngineService in org.apache.tapestry.engine
 

Classes in org.apache.tapestry.engine that implement IEngineService
 class ActionService
          Deprecated. To be removed in 4.1.
 class DirectService
          Implementation of the direct service, which encodes the page and component id in the service context, and passes application-defined parameters as well.
 class ExternalService
          The external service enables external applications to reference Tapestry pages via a URL.
 class HomeService
          An implementation of the home service that renders the Home page.
 class PageService
          Basic server for creating a link to another page in the application.
 class ResetService
          ServiceLink used to discard all cached data (templates, specifications, et cetera).
 class RestartService
          Restarts the Tapestry application.
 

Methods in org.apache.tapestry.engine that return IEngineService
 IEngineService RequestCycle.getService()
           
 IEngineService AbstractEngine.getService(java.lang.String name)
          Returns a service with the given name.
 

Methods in org.apache.tapestry.engine with parameters of type IEngineService
static java.lang.String EngineMessages.serviceNoParameter(IEngineService service)
           
 

Uses of IEngineService in org.apache.tapestry.form
 

Methods in org.apache.tapestry.form that return IEngineService
abstract  IEngineService Form.getActionService()
          Injected.
abstract  IEngineService Form.getDirectService()
          Injected.
 

Uses of IEngineService in org.apache.tapestry.html
 

Methods in org.apache.tapestry.html that return IEngineService
abstract  IEngineService Shell.getPageService()
           
abstract  IEngineService Frame.getPageService()
          Injected engine service.
 

Uses of IEngineService in org.apache.tapestry.link
 

Methods in org.apache.tapestry.link that return IEngineService
abstract  IEngineService ExternalLink.getExternalService()
           
abstract  IEngineService PageLink.getPageService()
           
 

Uses of IEngineService in org.apache.tapestry.services
 

Methods in org.apache.tapestry.services that return IEngineService
 IEngineService ServiceMap.getService(java.lang.String name)
          Returns the named service.
 

Methods in org.apache.tapestry.services with parameters of type IEngineService
 ILink LinkFactory.constructLink(IEngineService service, boolean post, java.util.Map parameters, boolean stateful)
          Constructs an ILink.
 

Uses of IEngineService in org.apache.tapestry.services.impl
 

Classes in org.apache.tapestry.services.impl that implement IEngineService
 class EngineServiceInnerProxy
          Inner proxy that actually resolves the engine service using the EngineServiceSource, then replaces itself in the outer proxy.
 class EngineServiceOuterProxy
          Outer proxy for engine services.
 

Methods in org.apache.tapestry.services.impl that return IEngineService
 IEngineService EngineServiceContribution.getService()
           
 IEngineService ServiceMapImpl.getService(java.lang.String name)
           
 IEngineService EngineServiceSource.resolveEngineService(java.lang.String name)
          Obtains an actual service implementation, not a proxy.
 IEngineService ServiceMapImpl.resolveEngineService(java.lang.String name)
          This returns the actual service, not the outer proxy.
 

Methods in org.apache.tapestry.services.impl with parameters of type IEngineService
 ILink LinkFactoryImpl.constructLink(IEngineService service, boolean post, java.util.Map parameters, boolean stateful)
           
protected  void LinkFactoryImpl.finalizeParameters(IEngineService service, java.util.Map parameters)
           
 void EngineServiceContribution.setService(IEngineService service)