Skip to content

Commit fd9acc6

Browse files
authored
Merge pull request #82 from Aitia-IIOT/tb/fixings
Rename orchestration service to serviceOrchestration
2 parents aeb89c8 + f2681fe commit fd9acc6

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

serviceorchestration-dynamic/src/main/java/eu/arrowhead/serviceorchestration/DynamicServiceOrchestrationSystemInfo.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public List<ServiceModel> getServices() {
9494
.build();
9595

9696
final ServiceModel orchestration = new ServiceModel.Builder()
97-
.serviceDefinition(Constants.SERVICE_DEF_ORCHESTRATION)
97+
.serviceDefinition(Constants.SERVICE_DEF_SERVICE_ORCHESTRATION)
9898
.version(DynamicServiceOrchestrationConstants.VERSION_ORCHESTRATION)
9999
.metadata(DynamicServiceOrchestrationConstants.METADATA_KEY_ORCHESTRATION_STRATEGY, DynamicServiceOrchestrationConstants.METADATA_VALUE_ORCHESTRATION_STRATEGY)
100100
.metadata(Constants.METADATA_KEY_UNRESTRICTED_DISCOVERY, true)
@@ -103,21 +103,21 @@ public List<ServiceModel> getServices() {
103103
.build();
104104

105105
final ServiceModel orchestrationPushManagement = new ServiceModel.Builder()
106-
.serviceDefinition(Constants.SERVICE_DEF_ORCHESTRATION_PUSH_MANAGEMENT)
106+
.serviceDefinition(Constants.SERVICE_DEF_SERVICE_ORCHESTRATION_PUSH_MANAGEMENT)
107107
.version(DynamicServiceOrchestrationConstants.VERSION_ORCHESTRATION_PUSH_MANAGEMENT)
108108
.serviceInterface(getHttpServiceInterfaceForOrchestrationPushManagement())
109109
.serviceInterface(getMqttServiceInterfaceForOrchestrationPushManagement())
110110
.build();
111111

112112
final ServiceModel orchestrationLockManagement = new ServiceModel.Builder()
113-
.serviceDefinition(Constants.SERVICE_DEF_ORCHESTRATION_LOCK_MANAGEMENT)
113+
.serviceDefinition(Constants.SERVICE_DEF_SERVICE_ORCHESTRATION_LOCK_MANAGEMENT)
114114
.version(DynamicServiceOrchestrationConstants.VERSION_ORCHESTRATION_PUSH_MANAGEMENT)
115115
.serviceInterface(getHttpServiceInterfaceForOrchestrationLockManagement())
116116
.serviceInterface(getMqttServiceInterfaceForOrchestrationLockManagement())
117117
.build();
118118

119119
final ServiceModel orchestrationHistoryManagement = new ServiceModel.Builder()
120-
.serviceDefinition(Constants.SERVICE_DEF_ORCHESTRATION_HISTORY_MANAGEMENT)
120+
.serviceDefinition(Constants.SERVICE_DEF_SERVICE_ORCHESTRATION_HISTORY_MANAGEMENT)
121121
.version(DynamicServiceOrchestrationConstants.VERSION_ORCHESTRATION_HISTORY_MANAGEMENT)
122122
.serviceInterface(getHttpServiceInterfaceForOrchestrationHistoryManagement())
123123
.serviceInterface(getMqttServiceInterfaceForOrchestrationHistoryManagement())

0 commit comments

Comments
 (0)