separate pkgs

This commit is contained in:
Besok
2019-11-03 12:35:01 +00:00
parent 1b32e23493
commit ffeee2f1a4
10 changed files with 11 additions and 107 deletions
@@ -39,7 +39,7 @@ public class SagaOrchestratorInternallyTest {
.discover(new Service4());
}
class Service1 extends OrchestrationService<Integer> {
class Service1 extends Service<Integer> {
@Override
public String getName() {
@@ -59,7 +59,7 @@ public class SagaOrchestratorInternallyTest {
}
}
class Service2 extends OrchestrationService<Integer> {
class Service2 extends Service<Integer> {
@Override
public String getName() {
@@ -78,7 +78,7 @@ public class SagaOrchestratorInternallyTest {
}
}
class Service3 extends OrchestrationService<Integer> {
class Service3 extends Service<Integer> {
@Override
public String getName() {
@@ -97,7 +97,7 @@ public class SagaOrchestratorInternallyTest {
}
}
class Service4 extends OrchestrationService<Integer> {
class Service4 extends Service<Integer> {
@Override
public String getName() {