org.apache.tapestry5.ioc
Interface ServiceBuilderResources
- All Superinterfaces:
- AnnotationAccess, ModuleBuilderSource, ObjectLocator, ServiceResources
- All Known Implementing Classes:
- ServiceResourcesImpl
public interface ServiceBuilderResources
- extends ServiceResources, ModuleBuilderSource
Extends ServiceResources
with additional methods needed only by the service builder
method, related to accessing a service's configuration. Services may have a single configuration in one of
three flavors: unordered, ordered or mapped.
getUnorderedConfiguration
<T> java.util.Collection<T> getUnorderedConfiguration(java.lang.Class<T> valueType)
getOrderedConfiguration
<T> java.util.List<T> getOrderedConfiguration(java.lang.Class<T> valueType)
getMappedConfiguration
<K,V> java.util.Map<K,V> getMappedConfiguration(java.lang.Class<K> keyType,
java.lang.Class<V> valueType)
Copyright © 2003-2012 The Apache Software Foundation.