Package org.conventionsframework.qualifier

Examples of org.conventionsframework.qualifier.Config


    public Map<String, Object> getConfigMap() {
        return configMap;
    }

    private String getConfigKey(InjectionPoint ip) {
        Config config = ip.getAnnotated().getAnnotation(Config.class);
        return Assert.hasText(config.value()) ? config.value() : ip.getMember().getName();
    }
View Full Code Here

TOP

Related Classes of org.conventionsframework.qualifier.Config

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.