aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/dcaegen2/services/sonhms/dao/PciUpdateRepository.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/onap/dcaegen2/services/sonhms/dao/PciUpdateRepository.java')
-rw-r--r--src/main/java/org/onap/dcaegen2/services/sonhms/dao/PciUpdateRepository.java53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/main/java/org/onap/dcaegen2/services/sonhms/dao/PciUpdateRepository.java b/src/main/java/org/onap/dcaegen2/services/sonhms/dao/PciUpdateRepository.java
new file mode 100644
index 0000000..dc997bc
--- /dev/null
+++ b/src/main/java/org/onap/dcaegen2/services/sonhms/dao/PciUpdateRepository.java
@@ -0,0 +1,53 @@
+
+/*******************************************************************************
+ * ============LICENSE_START=======================================================
+ * son-handler
+ * ================================================================================
+ * Copyright (C) 2020 Wipro Limited.
+ * ==============================================================================
+ * Licensed 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
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License 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.onap.dcaegen2.services.sonhms.dao;
+
+import org.springframework.stereotype.Repository;
+import org.springframework.transaction.annotation.Transactional;
+import org.onap.dcaegen2.services.sonhms.entity.PciUpdate;
+import org.springframework.data.repository.CrudRepository;
+import org.springframework.data.jpa.repository.Query;
+import org.springframework.data.jpa.repository.Modifying;
+
+@Repository
+@Transactional
+public interface PciUpdateRepository extends CrudRepository<PciUpdate, String> {
+
+ @SuppressWarnings("unchecked")
+ public PciUpdate save(PciUpdate persisted);
+
+ @Query(nativeQuery = true, value = "SELECT negative_ack_count FROM pci_update WHERE cell_id = ?1")
+ public int getNegativeAckCountforCellId(String cellId);
+
+ @Query(nativeQuery = true, value = "SELECT old_pci FROM pci_update WHERE cell_id = ?1")
+ public long getOldPciforCellId(String cellId);
+
+ @Modifying
+ @Query(nativeQuery = true, value = "UPDATE pci_update SET negative_ack_count = ?1 WHERE cell_id = ?2")
+ public void increaseNegativeAckCountforCellId(int negativeAckCount, String cellId);
+
+ @Modifying
+ @Query(nativeQuery = true, value = "DELETE FROM pci_update WHERE cell_id = ?1")
+ public void deleterecordforCellId(String cellId);
+
+}