Development of NETCONF RPCs for tr-069 adapter to
[oam/tr069-adapter.git] / acs / nbi / src / main / java / org / commscope / tr069adapter / acs / nbi / impl / ACSServiceAPIImpl.java
index 835f24c..1e1ff1a 100644 (file)
-/*\r
- * ============LICENSE_START========================================================================\r
- * ONAP : tr-069-adapter\r
- * =================================================================================================\r
- * Copyright (C) 2020 CommScope Inc Intellectual Property.\r
- * =================================================================================================\r
- * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,\r
- * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You\r
- * may obtain a copy of the License at\r
- *\r
- * http://www.apache.org/licenses/LICENSE-2.0\r
- *\r
- * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,\r
- * either express or implied. See the License for the specific language governing permissions and\r
- * limitations under the License.\r
- * ===============LICENSE_END=======================================================================\r
- */\r
-\r
-package org.commscope.tr069adapter.acs.nbi.impl;\r
-\r
-import static org.commscope.tr069adapter.acs.common.utils.AcsConstants.MAPPER_SERVICE_QUALILFIER;\r
-import static org.commscope.tr069adapter.acs.common.utils.AcsConstants.TR069_NBI_REQUEST_Q;\r
-\r
-import org.commscope.tr069adapter.acs.common.DeviceRPCRequest;\r
-import org.commscope.tr069adapter.acs.common.exception.MapperServiceException;\r
-import org.commscope.tr069adapter.acs.common.mapper.ACSServiceAPI;\r
-import org.commscope.tr069adapter.acs.nbi.util.OperationIdGenerator;\r
-import org.slf4j.Logger;\r
-import org.slf4j.LoggerFactory;\r
-import org.slf4j.MDC;\r
-import org.springframework.beans.factory.annotation.Autowired;\r
-import org.springframework.jms.core.JmsTemplate;\r
-import org.springframework.stereotype.Component;\r
-\r
-@Component(MAPPER_SERVICE_QUALILFIER)\r
-public class ACSServiceAPIImpl implements ACSServiceAPI {\r
-\r
-  private static final Logger logger = LoggerFactory.getLogger(ACSServiceAPIImpl.class);\r
-\r
-  private static final String CLIENT_STR = "client";\r
-\r
-  @Autowired\r
-  private OperationIdGenerator opIdGenerator;\r
-\r
-  @Autowired\r
-  private JmsTemplate jmsTemplate;\r
-\r
-  /*\r
-   * (non-Javadoc)\r
-   * \r
-   * @see org.commscope.tr069adapter.acs.mapper.ACSServiceAPI#performDeviceOperation(org.commscope.\r
-   * tr069adapter.acs.DeviceRPCRequest)\r
-   */\r
-  @Override\r
-  public long performDeviceOperation(DeviceRPCRequest deviceRPCRequest)\r
-      throws MapperServiceException {\r
-\r
-    Long opId = 0l;\r
-    try {\r
-      if (deviceRPCRequest != null && deviceRPCRequest.getDeviceDetails() != null) {\r
-        MDC.put(CLIENT_STR, deviceRPCRequest.getDeviceDetails().getDeviceId());\r
-      }\r
-\r
-      // validate the request and reject if not valid.\r
-      if (null == deviceRPCRequest) {\r
-        logger.error("Received null Mapper Request.");\r
-        throw new MapperServiceException("Received null Mapper Request.");\r
-      } else if (null == deviceRPCRequest.getOpDetails()) {\r
-        logger.error("Received null operation details.");\r
-        throw new MapperServiceException("Received null operation details.");\r
-      } else if (null == deviceRPCRequest.getOpDetails().getOpCode()) {\r
-        logger.error("Received null operation code.");\r
-        throw new MapperServiceException("Received null operation code.");\r
-      }\r
-\r
-      logger.info("Received request to perform device operation. OperationCode: {}",\r
-          deviceRPCRequest.getOpDetails().getOpCode());\r
-      opId = opIdGenerator.generateOpId();\r
-      logger.debug("The operation ID generated for processing the Device RPC request is - {}",\r
-          opId);\r
-      // set opId and forward the request\r
-      deviceRPCRequest.setOperationId(opId);\r
-      jmsTemplate.convertAndSend(TR069_NBI_REQUEST_Q, deviceRPCRequest);\r
-\r
-      logger.debug(\r
-          "Successfully posted the Mapper Request to Queue with OperationId : {} OperationCode : {}",\r
-          deviceRPCRequest.getOperationId(), deviceRPCRequest.getOpDetails().getOpCode());\r
-    } catch (Exception ex) {\r
-      MapperServiceException mapperEx =\r
-          new MapperServiceException("ACS Internal Error. Unknown Exception. Details :", ex);\r
-      logger.error(mapperEx.getMessage());\r
-      throw mapperEx;\r
-    } finally {\r
-      MDC.remove(CLIENT_STR);\r
-    }\r
-\r
-    return opId;\r
-  }\r
-\r
-}\r
+/*
+ * ============LICENSE_START========================================================================
+ * ONAP : tr-069-adapter
+ * =================================================================================================
+ * Copyright (C) 2020 CommScope Inc Intellectual Property.
+ * =================================================================================================
+ * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,
+ * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You
+ * may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
+ * either express or implied. See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ===============LICENSE_END=======================================================================
+ */
+
+package org.commscope.tr069adapter.acs.nbi.impl;
+
+import static org.commscope.tr069adapter.acs.common.utils.AcsConstants.MAPPER_SERVICE_QUALILFIER;
+import static org.commscope.tr069adapter.acs.common.utils.AcsConstants.TR069_NBI_REQUEST_Q;
+
+import org.commscope.tr069adapter.acs.common.DeviceRPCRequest;
+import org.commscope.tr069adapter.acs.common.OperationCode;
+import org.commscope.tr069adapter.acs.common.exception.MapperServiceException;
+import org.commscope.tr069adapter.acs.common.mapper.ACSServiceAPI;
+import org.commscope.tr069adapter.acs.nbi.util.OperationIdGenerator;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.slf4j.MDC;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.jms.core.JmsTemplate;
+import org.springframework.stereotype.Component;
+
+@Component(MAPPER_SERVICE_QUALILFIER)
+public class ACSServiceAPIImpl implements ACSServiceAPI {
+
+  private static final Logger logger = LoggerFactory.getLogger(ACSServiceAPIImpl.class);
+
+  private static final String CLIENT_STR = "client";
+
+  @Autowired
+  private OperationIdGenerator opIdGenerator;
+
+  @Autowired
+  private JmsTemplate jmsTemplate;
+
+  /*
+   * (non-Javadoc)
+   * 
+   * @see org.commscope.tr069adapter.acs.mapper.ACSServiceAPI#performDeviceOperation(org.commscope.
+   * tr069adapter.acs.DeviceRPCRequest)
+   */
+  @Override
+  public long performDeviceOperation(DeviceRPCRequest deviceRPCRequest)
+      throws MapperServiceException {
+
+    Long opId = 0l;
+    try {
+      if (deviceRPCRequest != null && deviceRPCRequest.getDeviceDetails() != null) {
+        MDC.put(CLIENT_STR, deviceRPCRequest.getDeviceDetails().getDeviceId());
+      }
+
+      // validate the request and reject if not valid.
+      if (null == deviceRPCRequest) {
+        logger.error("Received null Mapper Request.");
+        throw new MapperServiceException("Received null Mapper Request.");
+      } else if (null == deviceRPCRequest.getOpDetails()) {
+        logger.error("Received null operation details.");
+        throw new MapperServiceException("Received null operation details.");
+      } else if (null == deviceRPCRequest.getOpDetails().getOpCode()) {
+        logger.error("Received null operation code.");
+        throw new MapperServiceException("Received null operation code.");
+      }
+      OperationCode opCode = deviceRPCRequest.getOpDetails().getOpCode();
+      logger.info("Received request to perform device operation. OperationCode: {}", opCode);
+      opId = opIdGenerator.generateOpId();
+      logger.debug("The operation ID generated for processing the Device RPC request is - {}",
+          opId);
+      // set opId and forward the request
+      deviceRPCRequest.setOperationId(opId);
+      jmsTemplate.convertAndSend(TR069_NBI_REQUEST_Q, deviceRPCRequest);
+
+      logger.debug(
+          "Successfully posted the Mapper Request to Queue with OperationId : {} OperationCode : {}",
+          deviceRPCRequest.getOperationId(), deviceRPCRequest.getOpDetails().getOpCode());
+    } catch (Exception ex) {
+      MapperServiceException mapperEx =
+          new MapperServiceException("ACS Internal Error. Unknown Exception. Details :", ex);
+      logger.error(mapperEx.getMessage());
+      throw mapperEx;
+    } finally {
+      MDC.remove(CLIENT_STR);
+    }
+
+    return opId;
+  }
+
+}