Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d2fd35a30daab38cab0aace1a026e4dfd661eced (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/***************************************************************************
 * Copyright (c) 2004, 2005, 2006 Eike Stepper, Fuggerstr. 39, 10777 Berlin, Germany.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *    Eike Stepper - initial API and implementation
 **************************************************************************/
package org.eclipse.emf.cdo.tests;


import org.eclipse.net4j.core.Acceptor;
import org.eclipse.net4j.spring.Container;


public class ClientSeparatedServerTopology extends AbstractTopology
{
  private Container serverNet4j;

  private Container net4jServer;

  private Container cdoServer;

  private Container clientNet4j;

  private Container net4jClient;

  private Acceptor acceptor;

  public ClientSeparatedServerTopology()
  {
  }

  public void start() throws Exception
  {
    super.start();

    // Start server
    serverNet4j = createContainer("net4j", NET4J_LOCATION, null);
    net4jServer = createContainer("server", NET4J_SERVER_LOCATION, serverNet4j);
    cdoServer = createContainer("cdo", CDO_SERVER_LOCATION, net4jServer);

    acceptor = (Acceptor) cdoServer.getBean("acceptor", Acceptor.class);
    acceptor.start();

    // Start client
    clientNet4j = createContainer("net4j", NET4J_LOCATION, null);
    net4jClient = createContainer("client", NET4J_CLIENT_LOCATION, clientNet4j);
    createCDOClient("cdo", net4jClient);
  }

  public void stop() throws Exception
  {
    super.stop();

    //Stop client
    net4jClient.stop();
    clientNet4j.stop();

    //Stop server
    acceptor.stop();
    acceptor = null;

    cdoServer.stop();
    net4jServer.stop();
    serverNet4j.stop();
  }
}

Back to the top