/** * * Copyright * 2009-2015 Jayway Products AB * 2016-2017 Föreningen Sambruk * * Licensed under AGPL, Version 3.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.gnu.org/licenses/agpl.txt * * 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 se.streamsource.dci.qi4j; import org.qi4j.bootstrap.InvalidInjectionException; import org.qi4j.runtime.injection.DependencyModel; import org.qi4j.runtime.injection.InjectionContext; import org.qi4j.runtime.injection.InjectionProvider; import org.qi4j.runtime.injection.InjectionProviderFactory; import org.qi4j.runtime.injection.provider.InjectionProviderException; import org.qi4j.runtime.model.Resolution; import se.streamsource.dci.api.RoleMap; /** * Injection factory for @Role annotation. Looks up role in current RoleMap. */ public class RoleInjectionProviderFactory implements InjectionProviderFactory { public InjectionProvider newInjectionProvider( Resolution resolution, DependencyModel dependencyModel ) throws InvalidInjectionException { return new RoleInjectionProvider(dependencyModel.rawInjectionType()); } static class RoleInjectionProvider implements InjectionProvider { private Class<?> roleType; public RoleInjectionProvider( Class<?> roleType ) { this.roleType = roleType; } public Object provideInjection( InjectionContext context ) throws InjectionProviderException { try { return RoleMap.role( roleType ); } catch (IllegalArgumentException e) { return null; } } } }