Son-handler microservice seed code
[dcaegen2/services/son-handler.git] / src / main / java / com / wipro / www / sonhms / dao / BufferedNotificationsRepository.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.BufferedNotifications;
24
25 import java.util.List;
26
27 import org.springframework.data.jpa.repository.Query;
28 import org.springframework.data.repository.CrudRepository;
29 import org.springframework.stereotype.Repository;
30
31
32 @Repository
33 public interface BufferedNotificationsRepository extends CrudRepository<BufferedNotifications, String> {
34
35     @Query(nativeQuery = true, value = "SELECT cluster_id FROM buffered_notifications WHERE notification=?1")
36     public String getClusterIdForNotification(String notification);
37
38     @Query(nativeQuery = true,
39             value = "DELETE FROM buffered_notifications " + "WHERE notification = ( SELECT notification "
40                     + "FROM buffered_notifications WHERE cluster_id=?1) RETURNING notification;")
41     public List<String> getNotificationsFromQueue(String clusterId);
42
43 }