Skip to content

Commit

Permalink
Save playground
Browse files Browse the repository at this point in the history
Signed-off-by: Jamie Briggs <jamie.briggs@digital.justice.gov.uk>
  • Loading branch information
Jamie Briggs committed Feb 20, 2025
1 parent 8080882 commit f7f6ee2
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package uk.gov.laa.ccms.data.repository.spring;

import org.aspectj.weaver.ast.Not;
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
import org.springframework.stereotype.Repository;
import uk.gov.laa.ccms.data.entity.NotificationInfo;
import uk.gov.laa.ccms.data.repository.ReadOnlyRepository;

@Repository
public interface JPANotificationSearchRepository extends ReadOnlyRepository<NotificationInfo, Long>,
JpaSpecificationExecutor<NotificationInfo> {

}
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import uk.gov.laa.ccms.data.repository.NotificationRepository;
import uk.gov.laa.ccms.data.repository.NotificationSearchRepository;
import uk.gov.laa.ccms.data.repository.specification.NotificationInfoSpecification;
import uk.gov.laa.ccms.data.repository.spring.JPANotificationSearchRepository;

/**
* Service class responsible for handling notification-related operations.
Expand All @@ -40,7 +41,8 @@
public class NotificationService {

private final NotificationCountRepository notificationCountRepository;
private final NotificationSearchRepository notificationSearchRepository;
private final JPANotificationSearchRepository notificationSearchRepository;
private final NotificationSearchRepository oldnotificationSearchRepository;
private final NotificationRepository notificationRepository;
private final NotificationSummaryMapper notificationSummaryMapper;
private final NotificationsMapper notificationsMapper;
Expand Down

0 comments on commit f7f6ee2

Please sign in to comment.