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

athenz.shade.zts.org.glassfish.hk2.utilities.binding.ScopedBindingBuilder Maven / Gradle / Ivy

/*
 * Copyright (c) 2012, 2018 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0, which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * This Source Code may also be made available under the following Secondary
 * Licenses when the conditions for such availability set forth in the
 * Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
 * version 2 with the GNU Classpath Exception, which is available at
 * https://www.gnu.org/software/classpath/license.html.
 *
 * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
 */

package athenz.shade.zts.athenz.shade.zts.org.glassfish.hk2.utilities.binding;

import java.lang.annotation.Annotation;
import java.util.List;

import athenz.shade.zts.athenz.shade.zts.org.glassfish.hk2.api.HK2Loader;
import athenz.shade.zts.athenz.shade.zts.org.glassfish.hk2.api.TypeLiteral;

/**
 * Scoped service binding builder.
 *
 * @param  service type.
 * @author Marek Potociar (marek.potociar at oracle.com)
 */
public interface ScopedBindingBuilder extends BindingBuilder {
    /**
     * Bind a new contract to a service.
     *
     * @param contract contract type.
     * @return updated binder.
     */
    public ScopedBindingBuilder to(Class contract);

    /**
     * Bind a new contract to a service.
     *
     * @param contract contract type.
     * @return updated binder.
     */
    public ScopedBindingBuilder to(TypeLiteral contract);

    /**
     * Custom HK2 loader to be used when service class is about to be loaded.
     *
     * @param loader custom service loader.
     * @return updated binder.
     */
    public ScopedBindingBuilder loadedBy(HK2Loader loader);

    /**
     * Add binding descriptor metadata.
     *
     * The metadata can be later used to e.g. {@link athenz.shade.zts.athenz.shade.zts.org.glassfish.hk2.api.Filter filter} binding
     * descriptors. If this is for {@link athenz.shade.zts.athenz.shade.zts.org.glassfish.hk2.api.Factory} descriptors the metadata
     * will be placed on both the Factory as a service and on the
     * Factories {@link athenz.shade.zts.athenz.shade.zts.org.glassfish.hk2.api.Factory#provide()} method
     *
     * @param key   metadata key.
     * @param value metadata value.
     * @return updated binder.
     */
    public ScopedBindingBuilder withMetadata(String key, String value);

    /**
     * Add binding descriptor metadata.
     *
     * The metadata can be later used to e.g. {@link athenz.shade.zts.athenz.shade.zts.org.glassfish.hk2.api.Filter filter} binding
     * descriptors. If this is for {@link athenz.shade.zts.athenz.shade.zts.org.glassfish.hk2.api.Factory} descriptors the metadata
     * will be placed on both the Factory as a service and on the
     * Factories {@link athenz.shade.zts.athenz.shade.zts.org.glassfish.hk2.api.Factory#provide()} method
     *
     * @param key    metadata key.
     * @param values metadata values.
     * @return updated binder.
     */
    public ScopedBindingBuilder withMetadata(String key, List values);

    /**
     * Add a binging qualifier annotation.  If this is
     * being used with a {@link athenz.shade.zts.athenz.shade.zts.org.glassfish.hk2.api.Factory} then both the
     * Factory Service and the {@link athenz.shade.zts.athenz.shade.zts.org.glassfish.hk2.api.Factory#provide()}
     * method will get the qualifier
     *
     * @param annotation qualifier annotation.
     * @return updated binder.
     */
    public ScopedBindingBuilder qualifiedBy(Annotation annotation);

    /**
     * {@link athenz.shade.zts.athenz.shade.zts.javax.inject.Named Name} the binding.
     *
     * @param name new name value.
     * @return updated binding.
     */
    public ScopedNamedBindingBuilder named(String name);

    /**
     * Rank the binding. The higher rank, the more prominent position in an injected
     * {@link athenz.shade.zts.athenz.shade.zts.org.glassfish.hk2.api.IterableProvider iterable provider} for a contract.
     *
     * @param rank binding rank to be used to resolve ordering in case of multiple services
     *             are bound to the same contract.
     */
    public void ranked(int rank);

    /**
     * Set proxy flag on the binding.
     *
     * @param proxiable flag to determine if the binding should be proxiable.
     */
    public ScopedBindingBuilder proxy(boolean proxiable);
    
    /**
     * Set proxyForSameScope flag on the binding
     * 
     * @param proxyForSameScope flag to determine if the binding should be proxiable
     * within the same scope
     * @return A further refined builder
     */
    public ScopedBindingBuilder proxyForSameScope(boolean proxyForSameScope);
    
    /**
     * Set the name of the {@link athenz.shade.zts.athenz.shade.zts.org.glassfish.hk2.api.ClassAnalyzer} on the binding.
     *
     * @param analyzer The name of the analyzer that should be used.  May be null
     * to indicate the default class analzyer
     */
    public ScopedBindingBuilder analyzeWith(String analyzer);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy