Package org.jboss.as.demos.managedbean.archive

Examples of org.jboss.as.demos.managedbean.archive.BeanWithSimpleInjected.echo()


    @Override
    public String echo(String s) {
        log.info("-----> In test()");
        log.info("-----> Found BeanWithSimpleInjected, calling echo(\"Test\")");
        final BeanWithSimpleInjected bean = LookupService.getBean();
        s = bean.echo(s);
        if(bean.getSimple() == null) {
            throw new RuntimeException("Injection not complete");
        }
        log.info("-----> echo returned " + s);
        return s;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.