blob: 0e89171d9c259366b58f023a441a78dbb7c33972 [file] [log] [blame]
/**
* Copyright (C) 2008 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.internal;
import com.google.common.collect.ImmutableSet;
import com.google.inject.Injector;
import com.google.inject.Key;
import com.google.inject.spi.BindingTargetVisitor;
import com.google.inject.spi.Dependency;
import com.google.inject.spi.ExposedBinding;
import com.google.inject.spi.PrivateEnvironment;
import java.util.Set;
public class ExposedBindingImpl<T> extends BindingImpl<T> implements ExposedBinding<T> {
private final PrivateEnvironment privateEnvironment;
public ExposedBindingImpl(Injector injector, Object source, Key<T> key,
InternalFactory<T> factory, PrivateEnvironment privateEnvironment) {
super(injector, key, source, factory, Scoping.UNSCOPED);
this.privateEnvironment = privateEnvironment;
}
public ExposedBindingImpl(Object source, Key<T> key, Scoping scoping,
PrivateEnvironment privateEnvironment) {
super(source, key, scoping);
this.privateEnvironment = privateEnvironment;
}
public <V> V acceptTargetVisitor(BindingTargetVisitor<T, V> visitor) {
return visitor.visitExposed(this);
}
public Set<Dependency<?>> getDependencies() {
return ImmutableSet.<Dependency<?>>of(Dependency.get(Key.get(Injector.class)));
}
public PrivateEnvironment getPrivateEnvironment() {
return privateEnvironment;
}
public BindingImpl<T> withScoping(Scoping scoping) {
return new ExposedBindingImpl<T>(getSource(), getKey(), scoping, privateEnvironment);
}
public ExposedBindingImpl<T> withKey(Key<T> key) {
return new ExposedBindingImpl<T>(getSource(), key, getScoping(), privateEnvironment);
}
@Override public String toString() {
return new ToStringBuilder(ExposedBinding.class)
.add("key", getKey())
.add("privateEnvironment", privateEnvironment)
.add("source", getSource())
.toString();
}
}