001// Copyright 2006, 2007, 2009, 2010, 2011 The Apache Software Foundation
002//
003// Licensed under the Apache License, Version 2.0 (the "License");
004// you may not use this file except in compliance with the License.
005// You may obtain a copy of the License at
006//
007// http://www.apache.org/licenses/LICENSE-2.0
008//
009// Unless required by applicable law or agreed to in writing, software
010// distributed under the License is distributed on an "AS IS" BASIS,
011// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
012// See the License for the specific language governing permissions and
013// limitations under the License.
014
015package org.apache.tapestry5.ioc.internal;
016
017import java.lang.reflect.Method;
018import java.util.Set;
019
020import org.apache.tapestry5.commons.services.PlasticProxyFactory;
021import org.apache.tapestry5.ioc.ModuleBuilderSource;
022import org.apache.tapestry5.ioc.ServiceDecorator;
023import org.apache.tapestry5.ioc.ServiceResources;
024import org.apache.tapestry5.ioc.def.DecoratorDef2;
025import org.apache.tapestry5.ioc.internal.util.InternalUtils;
026
027public class DecoratorDefImpl extends AbstractServiceInstrumenter implements DecoratorDef2
028{
029    private final String decoratorId;
030
031    public DecoratorDefImpl(Method decoratorMethod, String[] patterns, String[] constraints,
032            PlasticProxyFactory proxyFactory, String decoratorId, Class serviceInterface, Set<Class> markers)
033    {
034        super(decoratorMethod, patterns, constraints, serviceInterface, markers, proxyFactory);
035        assert InternalUtils.isNonBlank(decoratorId);
036
037        this.decoratorId = decoratorId;
038
039    }
040
041    @Override
042    public ServiceDecorator createDecorator(ModuleBuilderSource moduleSource, ServiceResources resources)
043    {
044        return new ServiceDecoratorImpl(method, moduleSource, resources, proxyFactory);
045    }
046
047    @Override
048    public String getDecoratorId()
049    {
050        return decoratorId;
051    }
052
053}