X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=policy-agent%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fpolicyagent%2Fcontrollers%2FServiceController.java;h=4db3ade5fd6de57592b67d0b96dbf7585a912823;hb=refs%2Fchanges%2F91%2F3191%2F1;hp=2a346431eb62357b1c8129e95b530dd54df4be6a;hpb=96805287db06a91e569c184cc34ba4e69e4d22b2;p=nonrtric.git diff --git a/policy-agent/src/main/java/org/oransc/policyagent/controllers/ServiceController.java b/policy-agent/src/main/java/org/oransc/policyagent/controllers/ServiceController.java index 2a346431..4db3ade5 100644 --- a/policy-agent/src/main/java/org/oransc/policyagent/controllers/ServiceController.java +++ b/policy-agent/src/main/java/org/oransc/policyagent/controllers/ServiceController.java @@ -31,7 +31,6 @@ import io.swagger.annotations.ApiResponses; import java.time.Duration; import java.util.ArrayList; import java.util.Collection; -import java.util.List; import org.oransc.policyagent.exceptions.ServiceException; import org.oransc.policyagent.repository.Policies; @@ -43,7 +42,6 @@ import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestParam; @@ -79,11 +77,9 @@ public class ServiceController { } Collection servicesStatus = new ArrayList<>(); - synchronized (this.services) { - for (Service s : this.services.getAll()) { - if (name == null || name.equals(s.getName())) { - servicesStatus.add(toServiceStatus(s)); - } + for (Service s : this.services.getAll()) { + if (name == null || name.equals(s.getName())) { + servicesStatus.add(toServiceStatus(s)); } } @@ -100,6 +96,9 @@ public class ServiceController { if (registrationInfo.serviceName.isEmpty()) { throw new ServiceException("Missing mandatory parameter 'serviceName'"); } + if (registrationInfo.keepAliveIntervalSeconds < 0) { + throw new ServiceException("Keepalive interval shoul be greater or equal to 0"); + } } @ApiOperation(value = "Register a service") @@ -107,7 +106,7 @@ public class ServiceController { value = { // @ApiResponse(code = 200, message = "Service updated", response = String.class), @ApiResponse(code = 201, message = "Service created", response = String.class), // - @ApiResponse(code = 400, message = "Cannot parse the ServiceRegistrationInfo", response = String.class)}) + @ApiResponse(code = 400, message = "The ServiceRegistrationInfo is not accepted", response = String.class)}) @PutMapping("/service") public ResponseEntity putService(// @RequestBody ServiceRegistrationInfo registrationInfo) { @@ -145,7 +144,7 @@ public class ServiceController { value = { // @ApiResponse(code = 200, message = "Service supervision timer refreshed, OK"), @ApiResponse(code = 404, message = "The service is not found, needs re-registration")}) - @PostMapping("/services/keepalive") + @PutMapping("/services/keepalive") public ResponseEntity keepAliveService(// @RequestParam(name = "name", required = true) String serviceName) { try { @@ -157,19 +156,15 @@ public class ServiceController { } private Service removeService(String name) throws ServiceException { - synchronized (this.services) { - Service service = this.services.getService(name); - this.services.remove(service.getName()); - return service; - } + Service service = this.services.getService(name); // Just to verify that it exists + this.services.remove(service.getName()); + return service; } private void removePolicies(Service service) { - synchronized (this.policies) { - List policyList = new ArrayList<>(this.policies.getForService(service.getName())); - for (Policy policy : policyList) { - this.policies.remove(policy); - } + Collection policyList = this.policies.getForService(service.getName()); + for (Policy policy : policyList) { + this.policies.remove(policy); } }