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

org.apache.tapestry.ioc.internal.Module Maven / Gradle / Ivy

// Copyright 2006, 2007 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.tapestry.ioc.internal;

import org.apache.tapestry.ioc.ModuleBuilderSource;
import org.apache.tapestry.ioc.ServiceDecorator;
import org.apache.tapestry.ioc.def.ContributionDef;
import org.apache.tapestry.ioc.def.DecoratorDef;
import org.apache.tapestry.ioc.def.ServiceDef;

import java.util.Collection;
import java.util.List;
import java.util.Set;

/**
 * A module within the Tapestry IoC registry. Each Module is constructed around a corresponding
 * module builder instance; the methods and annotations of that instance define the services
 * provided by the module.
 */
public interface Module extends ModuleBuilderSource
{
    /**
     * Locates a service given a service id and the corresponding service interface type.
     *
     * @param 
     * @param serviceId        identifies the service to access
     * @param serviceInterface the interface the service implements
     * @return the service's proxy
     * @throws RuntimeException if there is an error instantiating the service proxy
     */
     T getService(String serviceId, Class serviceInterface);

    /**
     * Locates the ids of all services that implement the provided service interface, or whose
     * service interface is assignable to the provided service interface (is a super-class or
     * super-interface).
     *
     * @param serviceInterface the interface to search for
     * @return a collection of service ids
     */
    Collection findServiceIdsForInterface(Class serviceInterface);

    /**
     * Locates all the decorators that should apply the identified service. This includes visibility
     * rules (private services may only be decorated by decorators in the same module) and other
     * filtering rules. The resulting list is ordered and from the list of
     * {@link org.apache.tapestry.ioc.def.DecoratorDef}s, a list of {@link ServiceDecorator}s is
     * returned.
     *
     * @param serviceId identifies the service to be decorated
     * @return the ordered list of service decorators
     */
    List findDecoratorsForService(String serviceId);

    /**
     * Iterates over any decorator definitions defined by the module and returns those that apply to
     * the provided service definition.
     *
     * @param serviceDef for which decorators are being assembled
     * @return set of decorators, possibly empty (but not null)
     */
    Set findMatchingDecoratorDefs(ServiceDef serviceDef);

    /**
     * Finds any contributions that are targetted at the indicated service.
     */
    Set getContributorDefsForService(String serviceId);

    /**
     * Locates services with the {@link org.apache.tapestry.ioc.annotations.EagerLoad} annotation
     * and forces them to instantiate fully. This is part of the Registry startup.
     */
    void eagerLoadServices();

    /**
     * Returns the service definition for the given service id.
     *
     * @param serviceId unique id for the service (caseless)
     * @return the service definition or null
     */
    ServiceDef getServiceDef(String serviceId);

    /**
     * Returns the name used to obtain a logger for the module. Services within the module suffix
     * this with a period and the service id.
     *
     * @return module logger name
     */
    String getLoggerName();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy