All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.tapestry5.internal.spring.SpringBeanServiceDef Maven / Gradle / Ivy

// Copyright 2009 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.internal.spring;

import org.apache.tapestry5.ioc.ObjectCreator;
import org.apache.tapestry5.ioc.ScopeConstants;
import org.apache.tapestry5.ioc.ServiceBuilderResources;
import org.apache.tapestry5.ioc.def.ServiceDef2;
import org.springframework.context.ApplicationContext;

import java.util.Collections;
import java.util.Set;

public class SpringBeanServiceDef implements ServiceDef2
{
    private final String beanName;

    private final ApplicationContext context;

    public SpringBeanServiceDef(String beanName, ApplicationContext context)
    {
        this.beanName = beanName;
        this.context = context;
    }

    @Override
    public boolean isPreventDecoration()
    {
        return true;
    }

    @Override
    public ObjectCreator createServiceCreator(ServiceBuilderResources resources)
    {
        return new ObjectCreator()
        {
            @Override
            public Object createObject()
            {
                return context.getBean(beanName);
            }

            @Override
            public String toString()
            {
                return String.format("ObjectCreator", beanName);
            }
        };
    }

    @Override
    public String getServiceId()
    {
        return beanName;
    }

    @Override
    public Set getMarkers()
    {
        return Collections.emptySet();
    }

    @Override
    public Class getServiceInterface()
    {
        return context.getType(beanName);
    }

    @Override
    public String getServiceScope()
    {
        return ScopeConstants.DEFAULT;
    }

    @Override
    public boolean isEagerLoad()
    {
        return false;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy