org.glassfish.hk2.utilities.binding.ScopedNamedBindingBuilder 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 org.glassfish.hk2.utilities.binding;
import java.lang.annotation.Annotation;
import java.util.List;
import org.glassfish.hk2.api.HK2Loader;
import org.glassfish.hk2.api.TypeLiteral;
/**
* Scoped and named service binding builder.
*
* @param service type.
* @author Marek Potociar (marek.potociar at oracle.com)
*/
public interface ScopedNamedBindingBuilder extends BindingBuilder {
/**
* Bind a new contract to a service.
*
* @param contract contract type.
* @return updated binder.
*/
public ScopedNamedBindingBuilder to(Class super T> contract);
/**
* Bind a new contract to a service.
*
* @param contract contract type.
* @return updated binder.
*/
public ScopedNamedBindingBuilder 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 ScopedNamedBindingBuilder loadedBy(HK2Loader loader);
/**
* Add binding descriptor metadata.
*
* The metadata can be later used to e.g. {@link org.glassfish.hk2.api.Filter filter} binding
* descriptors. If this is for {@link org.glassfish.hk2.api.Factory} descriptors the metadata
* will be placed on both the Factory as a service and on the
* Factories {@link org.glassfish.hk2.api.Factory#provide()} method
*
* @param key metadata key.
* @param value metadata value.
* @return updated binder.
*/
public ScopedNamedBindingBuilder withMetadata(String key, String value);
/**
* Add binding descriptor metadata.
*
* The metadata can be later used to e.g. {@link org.glassfish.hk2.api.Filter filter} binding
* descriptors. If this is for {@link org.glassfish.hk2.api.Factory} descriptors the metadata
* will be placed on both the Factory as a service and on the
* Factories {@link org.glassfish.hk2.api.Factory#provide()} method
*
* @param key metadata key.
* @param values metadata values.
* @return updated binder.
*/
public ScopedNamedBindingBuilder withMetadata(String key, List values);
/**
* Add a binging qualifier annotation. If this is
* being used with a {@link org.glassfish.hk2.api.Factory} then both the
* Factory Service and the {@link org.glassfish.hk2.api.Factory#provide()}
* method will get the qualifier
*
* @param annotation qualifier annotation.
* @return updated binder.
*/
public ScopedNamedBindingBuilder qualifiedBy(Annotation annotation);
/**
* Rank the binding. The higher rank, the more prominent position in an injected
* {@link 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 ScopedNamedBindingBuilder proxy(boolean proxiable);
/**
* Set the name of the {@link 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 ScopedNamedBindingBuilder analyzeWith(String analyzer);
}