Son-handler microservice seed code
[dcaegen2/services/son-handler.git] / src / main / java / com / wipro / www / sonhms / dao / ClusterDetailsRepository.java
1 /*******************************************************************************
2  * ============LICENSE_START=======================================================
3  * pcims
4  *  ================================================================================
5  *  Copyright (C) 2018 Wipro Limited.
6  *  ==============================================================================
7  *   Licensed under the Apache License, Version 2.0 (the "License");
8  *   you may not use this file except in compliance with the License.
9  *   You may obtain a copy of the License at
10  *
11  *        http://www.apache.org/licenses/LICENSE-2.0
12  *
13  *   Unless required by applicable law or agreed to in writing, software
14  *   distributed under the License is distributed on an "AS IS" BASIS,
15  *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  *   See the License for the specific language governing permissions and
17  *   limitations under the License.
18  *   ============LICENSE_END=========================================================
19  ******************************************************************************/
20
21 package com.wipro.www.sonhms.dao;
22
23 import com.wipro.www.sonhms.entity.ClusterDetails;
24
25 import java.util.List;
26
27 import org.springframework.data.jpa.repository.Modifying;
28 import org.springframework.data.jpa.repository.Query;
29 import org.springframework.data.repository.CrudRepository;
30 import org.springframework.stereotype.Repository;
31 import org.springframework.transaction.annotation.Transactional;
32
33
34 @Repository
35 @Transactional
36 public interface ClusterDetailsRepository extends CrudRepository<ClusterDetails, String> {
37
38     @Modifying
39     @Query(nativeQuery = true, value = "UPDATE CLUSTER_DETAILS SET cluster_info=?1  WHERE cluster_id = ?2")
40     public void updateCluster(String clusterInfo, String clusterId);
41
42     @Query(nativeQuery = true, value = "SELECT * FROM cluster_details")
43     public List<ClusterDetails> getAllClusterDetails();
44
45     @Query(nativeQuery = true, value = "SELECT child_thread_id FROM cluster_details WHERE cluster_id = ?1")
46     public long getChildThreadForCluster(String clusterId);
47
48     @Query(nativeQuery = true, value = "SELECT cluster_id FROM cluster_details WHERE child_thread_id = ?1")
49     public String getClusterIdForChildThread(long childThreadId);
50
51     @Modifying
52     @Query(nativeQuery = true, value = "DELETE FROM cluster_details WHERE child_thread_id = ?1")
53     public void deleteByChildThreadId(Long threadId);
54
55     @Modifying
56     @Query(nativeQuery = true, value = "UPDATE cluster_details SET child_thread_id = ?2 WHERE cluster_id = ?1")
57     public void updateThreadId(String clusterId, Long threadId);
58
59 }