annotate src/main/java/alice/test/topology/ring/StartRing.java @ 345:8f71c3e6f11d
Change directory structure Maven standard
author |
sugi |
date |
Wed, 16 Apr 2014 18:26:07 +0900 |
parents |
|
children |
aefbe41fcf12 |
rev |
line source |
345
|
1 package alice.test.topology.ring;
|
|
2
|
|
3 import alice.codesegment.CodeSegment;
|
|
4
|
|
5 public class StartRing extends CodeSegment {
|
|
6 private RingTopologyConfig conf;
|
|
7 public StartRing(RingTopologyConfig conf) {
|
|
8 this.conf = conf;
|
|
9 }
|
|
10 @Override
|
|
11 public void run() {
|
|
12 CheckMyName cs = new CheckMyName(conf);
|
|
13 cs.ds1.setKey("host");
|
|
14 }
|
|
15
|
|
16 }
|