blob: 03c4b0e3488fa28553863fa64932b0f14594ef21 [file] [log] [blame]
/**
* Copyright (C) 2007 Google Inc.
*
* 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 com.google.inject.spi.oldversion;
import com.google.inject.Provider;
import com.google.inject.spi.HasInjections;
/**
* A binding to a single provider instance.
*
* <p>Example: {@code bind(Foo.class).toProvider(new FooProvider());}
*
* @deprecated replaced with {@link
* com.google.inject.spi.BindingTargetVisitor#visitProvider(com.google.inject.Provider)}
*
* @author crazybob@google.com (Bob Lee)
*/
@Deprecated
public interface ProviderInstanceBinding<T> extends OldVersionBinding<T>, HasInjections {
/**
* Gets the raw (unscoped) provider instance associated with this binding.
*/
Provider<? extends T> getProviderInstance();
}