Loading src/main/java/org/etsi/osl/osom/management/CROrchestrationCheckDeploymentService.java +13 −9 Original line number Diff line number Diff line Loading @@ -94,16 +94,20 @@ public class CROrchestrationCheckDeploymentService implements JavaDelegate { rlist.add(res); } @Valid ServiceStateType currentState = aService.getState(); ServiceStateType nextState = aService.findNextStateBasedOnSupportingResources(rlist); if (!currentState.equals(nextState)) { supd.setState( nextState ); Note n = new Note(); n.setText("Service Status Changed to: " + nextState); n.setAuthor(compname); n.setDate(OffsetDateTime.now(ZoneOffset.UTC).toString()); supd.addNoteItem(n); aService = serviceOrderManager.updateService( aService.getId(), supd, propagateToSO ); } if ( aService!= null ) { if ( aService.getState().equals(ServiceStateType.ACTIVE) Loading Loading
src/main/java/org/etsi/osl/osom/management/CROrchestrationCheckDeploymentService.java +13 −9 Original line number Diff line number Diff line Loading @@ -94,16 +94,20 @@ public class CROrchestrationCheckDeploymentService implements JavaDelegate { rlist.add(res); } @Valid ServiceStateType currentState = aService.getState(); ServiceStateType nextState = aService.findNextStateBasedOnSupportingResources(rlist); if (!currentState.equals(nextState)) { supd.setState( nextState ); Note n = new Note(); n.setText("Service Status Changed to: " + nextState); n.setAuthor(compname); n.setDate(OffsetDateTime.now(ZoneOffset.UTC).toString()); supd.addNoteItem(n); aService = serviceOrderManager.updateService( aService.getId(), supd, propagateToSO ); } if ( aService!= null ) { if ( aService.getState().equals(ServiceStateType.ACTIVE) Loading