-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #67 from DSM-Repo/refactor-project-#2
pr: 패키지 분리
- Loading branch information
Showing
215 changed files
with
912 additions
and
1,007 deletions.
There are no files selected for viewing
17 changes: 9 additions & 8 deletions
17
...application/impl/ReissueTokenService.java → ...ion/auth/service/ReissueTokenService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 16 additions & 15 deletions
31
...application/impl/TeacherLoginService.java → ...ion/auth/service/TeacherLoginService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
src/main/java/com/example/whopper/application/auth/usecase/ReissueTokenUseCase.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package com.example.whopper.application.auth.usecase; | ||
|
||
import com.example.whopper.interfaces.auth.dto.response.TokenResponse; | ||
|
||
public interface ReissueTokenUseCase { | ||
TokenResponse reissueToken(String token); | ||
} |
8 changes: 8 additions & 0 deletions
8
src/main/java/com/example/whopper/application/auth/usecase/StudentLoginUseCase.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package com.example.whopper.application.auth.usecase; | ||
|
||
import com.example.whopper.interfaces.auth.dto.request.LoginRequest; | ||
import com.example.whopper.interfaces.auth.dto.response.TokenResponse; | ||
|
||
public interface StudentLoginUseCase { | ||
TokenResponse studentLogin(LoginRequest request); | ||
} |
8 changes: 8 additions & 0 deletions
8
src/main/java/com/example/whopper/application/auth/usecase/TeacherLoginUseCase.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package com.example.whopper.application.auth.usecase; | ||
|
||
import com.example.whopper.interfaces.auth.dto.request.LoginRequest; | ||
import com.example.whopper.interfaces.auth.dto.response.TokenResponse; | ||
|
||
public interface TeacherLoginUseCase { | ||
TokenResponse teacherLogin(LoginRequest request); | ||
} |
24 changes: 12 additions & 12 deletions
24
.../application/impl/AddFeedbackService.java → .../feedback/service/AddFeedbackService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
...lication/impl/ConfirmFeedbackService.java → ...dback/service/ConfirmFeedbackService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...plication/impl/DeleteFeedbackService.java → ...edback/service/DeleteFeedbackService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 9 additions & 9 deletions
18
...application/impl/FindFeedbackService.java → ...feedback/service/FindFeedbackService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
...plication/impl/UpdateFeedbackService.java → ...edback/service/UpdateFeedbackService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
src/main/java/com/example/whopper/application/feedback/usecase/AddFeedbackUseCase.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package com.example.whopper.application.feedback.usecase; | ||
|
||
import com.example.whopper.interfaces.feedback.dto.FeedbackRequest; | ||
|
||
public interface AddFeedbackUseCase { | ||
void addFeedback(FeedbackRequest request); | ||
} |
2 changes: 1 addition & 1 deletion
2
...ation/usecase/ConfirmFeedbackUseCase.java → ...dback/usecase/ConfirmFeedbackUseCase.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...cation/usecase/DeleteFeedbackUseCase.java → ...edback/usecase/DeleteFeedbackUseCase.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...lication/usecase/FindFeedbackUseCase.java → ...feedback/usecase/FindFeedbackUseCase.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
src/main/java/com/example/whopper/application/feedback/usecase/UpdateFeedbackUseCase.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package com.example.whopper.application.feedback.usecase; | ||
|
||
import com.example.whopper.interfaces.feedback.dto.UpdateFeedbackRequest; | ||
|
||
public interface UpdateFeedbackUseCase { | ||
void updateFeedback(String id, UpdateFeedbackRequest request); | ||
} |
8 changes: 4 additions & 4 deletions
8
...n/file/application/impl/ImageService.java → ...r/application/file/impl/ImageService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...ain/file/application/impl/PdfService.java → ...per/application/file/impl/PdfService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ile/application/usecase/ImageUseCase.java → ...pplication/file/usecase/ImageUseCase.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../file/application/usecase/PdfUseCase.java → .../application/file/usecase/PdfUseCase.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
12 changes: 6 additions & 6 deletions
12
...impl/ChangeLibraryAccessRightService.java → ...impl/ChangeLibraryAccessRightService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
...pplication/impl/CreateLibraryService.java → ...on/library/impl/CreateLibraryService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
...cation/impl/FindLibraryDetailService.java → ...ibrary/impl/FindLibraryDetailService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.