Package org.jboss.test.gravia.itests.sub.a1

Examples of org.jboss.test.gravia.itests.sub.a1.ServiceA1


public class ModuleActivatorA implements ModuleActivator {

    @Override
    public void start(final ModuleContext context) throws Exception {
        MBeanServer server = ServiceLocator.getRequiredService(context, MBeanServer.class);
        ModuleStateA moduleState = new ModuleStateA() {

            @Override
            public String getModuleState() {
                return context.getModule().getState().toString();
            }
View Full Code Here


    public ServiceA1 getServiceA1() {
        return ref.get();
    }

    public String doStuff(String msg) {
        ServiceA1 srv = ref.get();
        return name + ":" + srv.doStuff(msg);
    }
View Full Code Here

    public ServiceA1 getServiceA1() {
        return ref.get();
    }

    public String doStuff(String msg) {
        ServiceA1 srv = ref.get();
        return name + ":" + srv.doStuff(msg);
    }
View Full Code Here

TOP

Related Classes of org.jboss.test.gravia.itests.sub.a1.ServiceA1

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.