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    
015    package org.apache.tapestry5.ioc.internal;
016    
017    import java.lang.reflect.Method;
018    import java.util.Set;
019    
020    import org.apache.tapestry5.ioc.ModuleBuilderSource;
021    import org.apache.tapestry5.ioc.ServiceDecorator;
022    import org.apache.tapestry5.ioc.ServiceResources;
023    import org.apache.tapestry5.ioc.def.DecoratorDef2;
024    import org.apache.tapestry5.ioc.internal.util.InternalUtils;
025    import org.apache.tapestry5.ioc.services.PlasticProxyFactory;
026    
027    public 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        public ServiceDecorator createDecorator(ModuleBuilderSource moduleSource, ServiceResources resources)
042        {
043            return new ServiceDecoratorImpl(method, moduleSource, resources, proxyFactory);
044        }
045    
046        public String getDecoratorId()
047        {
048            return decoratorId;
049        }
050    
051    }