Package org.apache.tapestry5.services
Interface EnvironmentalShadowBuilder
-
- All Known Implementing Classes:
EnvironmentalShadowBuilderImpl
public interface EnvironmentalShadowBuilder
Much likePropertyShadowBuilder
, except that instead of accessing a property of some other service, it accesses a value from within theEnvironment
service. This is useful for defining a new service that can be injected into other services (whereas theEnvironmental
annotation may only be used within component classes).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> T
build(Class<T> serviceType)
Returns a proxy that delegates all methods to an object obtained fromEnvironment.peekRequired(Class)
.
-
-
-
Method Detail
-
build
<T> T build(Class<T> serviceType)
Returns a proxy that delegates all methods to an object obtained fromEnvironment.peekRequired(Class)
. Note that at the time this method is invoked, the Environment service may still be virtual, and will often not yet have been loaded with values, and that's OK, the resolution is deferred to the instant a method is invoked.- Type Parameters:
T
-- Parameters:
serviceType
- the service type, which is used to obtained the delegate instance- Returns:
- a proxy to the service
-
-