Package org.jboss.solder.literal

Examples of org.jboss.solder.literal.NamedLiteral


        if (authenticatorClass != null) {
            return authenticators.select(authenticatorClass).get();
        }

        if (!Strings.isEmpty(authenticatorName)) {
            Instance<Authenticator> selected = authenticators.select(new NamedLiteral(authenticatorName));
            if (selected.isAmbiguous()) {
                log.error("Multiple Authenticators found with configured name [" + authenticatorName + "]");
                return null;
            }
View Full Code Here

TOP

Related Classes of org.jboss.solder.literal.NamedLiteral

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.