blob: b1ce58feb06add320e55cff818348e2a53a839d0 [file] [log] [blame]
// Copyright 2007, 2010 The Apache Software Foundation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package org.apache.tapestry5.ioc.internal;
import org.apache.tapestry5.ioc.AnnotationProvider;
import org.apache.tapestry5.ioc.ObjectLocator;
import org.apache.tapestry5.ioc.Registry;
/**
* A wrapper around {@link InternalRegistry} that exists to expand symbols in a service id before
* invoking {@link ObjectLocator#getService(Class)}.
*/
public class RegistryWrapper implements Registry
{
private final InternalRegistry registry;
public RegistryWrapper(final InternalRegistry registry)
{
this.registry = registry;
}
public void cleanupThread()
{
registry.cleanupThread();
}
public void shutdown()
{
registry.shutdown();
}
public <T> T getObject(Class<T> objectType, AnnotationProvider annotationProvider)
{
return registry.getObject(objectType, annotationProvider);
}
public <T> T getService(String serviceId, Class<T> serviceInterface)
{
String expandedServiceId = registry.expandSymbols(serviceId);
return registry.getService(expandedServiceId, serviceInterface);
}
public <T> T getService(Class<T> serviceInterface)
{
return registry.getService(serviceInterface);
}
public <T> T autobuild(Class<T> clazz)
{
return registry.autobuild(clazz);
}
public <T> T autobuild(String description, Class<T> clazz)
{
return registry.autobuild(description, clazz);
}
public void performRegistryStartup()
{
registry.performRegistryStartup();
}
public <T> T proxy(Class<T> interfaceClass, Class<? extends T> implementationClass)
{
return registry.proxy(interfaceClass, implementationClass);
}
}