RouterServer.java :  » ESB » celtix-1.0 » org » objectweb » celtix » systest » routing » Java Open Source

Java Open Source » ESB » celtix 1.0 
celtix 1.0 » org » objectweb » celtix » systest » routing » RouterServer.java
package org.objectweb.celtix.systest.routing;
import java.io.File;
import java.net.URL;

import javax.xml.ws.WebServiceException;

import org.objectweb.celtix.Bus;
import org.objectweb.celtix.BusException;
import org.objectweb.celtix.routing.RouterManager;
import org.objectweb.celtix.systest.common.TestServerBase;
import org.objectweb.celtix.testutil.common.TestUtil;

public class RouterServer extends TestServerBase {
    private static final String CELTIX_ROUTER_TMP = new String("/celtix-router-tmp");
    private Bus bus;

    public RouterServer(String[] args) {
        URL routerConfigFileUrl = RouterServer.class.getResource("router_config.xml");
        System.setProperty("celtix.config.file", routerConfigFileUrl.toString());
        try {
            bus = Bus.init(args);
        } catch (BusException be) {
            throw new WebServiceException("Could not initialize bus", be);
        }
    }

    protected void run()  {
        RouterManager rm = new RouterManager(bus);
        rm.init();
    }

    private void cleanup() {
        TestUtil.deleteDir(new File(System.getProperty("user.dir"),
                                    CELTIX_ROUTER_TMP));
    }
    
    public boolean stopInProcess() throws Exception {
        System.clearProperty("celtix.config.file");
        tearDown();
        return super.stopInProcess();
    }

    //Called in context of start method
    public void tearDown() throws Exception {
        cleanup();
        super.tearDown();
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.