Prepare Mock for EnrichmentController
[portal/nonrtric-controlpanel.git] / webapp-backend / src / main / java / org / oransc / portal / nonrtric / controlpanel / controller / EnrichmentController.java
index 558923f..300def5 100644 (file)
  */
 package org.oransc.portal.nonrtric.controlpanel.controller;
 
+import io.swagger.annotations.ApiOperation;
+
 import java.lang.invoke.MethodHandles;
+
 import org.oransc.portal.nonrtric.controlpanel.ControlPanelConstants;
 import org.oransc.portal.nonrtric.controlpanel.eiproducerapi.EiProducerApi;
 import org.slf4j.Logger;
@@ -33,7 +36,6 @@ import org.springframework.web.bind.annotation.GetMapping;
 import org.springframework.web.bind.annotation.PathVariable;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RestController;
-import io.swagger.annotations.ApiOperation;
 
 /**
  * Proxies calls from the front end to the EI Producer API.
@@ -120,4 +122,4 @@ public class EnrichmentController {
         logger.debug("getEiProducerStatus {}", eiProducerId);
         return this.eiProducerApi.getEiProducerStatus(eiProducerId);
     }
-}
\ No newline at end of file
+}