File tree Expand file tree Collapse file tree 3 files changed +0
-7
lines changed
src/main/java/clap/server
adapter/inbound/web/notification
port/outbound/notification Expand file tree Collapse file tree 3 files changed +0
-7
lines changed Original file line number Diff line number Diff line change 77import io .swagger .v3 .oas .annotations .Operation ;
88import io .swagger .v3 .oas .annotations .Parameter ;
99import io .swagger .v3 .oas .annotations .Parameters ;
10- import io .swagger .v3 .oas .annotations .responses .ApiResponses ;
1110import io .swagger .v3 .oas .annotations .tags .Tag ;
1211import lombok .RequiredArgsConstructor ;
1312import org .springframework .data .domain .Page ;
1413import org .springframework .data .domain .PageRequest ;
1514import org .springframework .data .domain .Pageable ;
1615import org .springframework .http .ResponseEntity ;
1716import org .springframework .security .core .annotation .AuthenticationPrincipal ;
18- import org .springframework .security .core .parameters .P ;
1917import org .springframework .web .bind .annotation .GetMapping ;
2018import org .springframework .web .bind .annotation .RequestMapping ;
2119import org .springframework .web .bind .annotation .RequestParam ;
Original file line number Diff line number Diff line change 11package clap .server .application .port .outbound .notification ;
22
33import clap .server .adapter .inbound .web .dto .notification .FindNotificationListResponse ;
4- import clap .server .domain .model .notification .Notification ;
54import org .springframework .data .domain .Page ;
65import org .springframework .data .domain .Pageable ;
76
8- import java .util .List ;
9- import java .util .Optional ;
107
118public interface LoadNotificationPort {
129 Page <FindNotificationListResponse > findAllByReceiverId (Long receiverId , Pageable pageable );
Original file line number Diff line number Diff line change 11package clap .server .application .service .notification ;
22
33import clap .server .adapter .inbound .web .dto .notification .FindNotificationListResponse ;
4- import clap .server .application .port .inbound .domain .MemberService ;
5- import clap .server .application .port .inbound .domain .TaskService ;
64import clap .server .application .port .inbound .notification .FindNotificationListUsecase ;
75import clap .server .application .port .outbound .notification .LoadNotificationPort ;
86import clap .server .common .annotation .architecture .ApplicationService ;
You can’t perform that action at this time.
0 commit comments