-
Notifications
You must be signed in to change notification settings - Fork 2
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 #97 from JNU-econovation/rename_api_to_main_api
[CHORE] api 모듈 이름을 main-api로 변경
- Loading branch information
Showing
61 changed files
with
152 additions
and
153 deletions.
There are no files selected for viewing
12 changes: 0 additions & 12 deletions
12
modules/api/src/main/java/com/whoz_in/api/command/member/presentation/AuthController.java
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
modules/api/src/main/java/com/whoz_in/api/query/device_info/application/DeviceInfo.java
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
modules/api/src/main/java/com/whoz_in/api/query/device_info/application/DevicesInfo.java
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
modules/api/src/main/java/com/whoz_in/api/query/device_info/application/DevicesInfoGet.java
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
modules/api/src/main/java/com/whoz_in/api/query/member/application/MemberGet.java
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
modules/api/src/main/java/com/whoz_in/api/query/member/application/MemberResponse.java
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
modules/api/src/main/java/com/whoz_in/api/shared/application/query/Query.java
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
modules/api/src/main/java/com/whoz_in/api/shared/application/query/Response.java
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
modules/api/src/main/java/com/whoz_in/api/shared/presentation/response/ApiResponseBody.java
This file was deleted.
Oops, something went wrong.
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
.../whoz_in/api_query_domain_jpa/Device.java → ...ava/com/whoz_in/api_query_jpa/Device.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
9 changes: 4 additions & 5 deletions
9
..._jpa/device_info/DeviceInfoJpaViewer.java → ..._jpa/device_info/DeviceInfoJpaViewer.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
4 changes: 2 additions & 2 deletions
4
...tructure/spring/src/main/java/com/whoz_in/spring/application/command/CommandHandlers.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
...ructure/spring/src/main/java/com/whoz_in/spring/application/command/SpringCommandBus.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
...frastructure/spring/src/main/java/com/whoz_in/spring/application/query/QueryHandlers.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
...rastructure/spring/src/main/java/com/whoz_in/spring/application/query/SpringQueryBus.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.
6 changes: 3 additions & 3 deletions
6
...com/whoz_in/api/WhozInApiApplication.java → .../whoz_in/main_api/MainApiApplication.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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
package com.whoz_in.api; | ||
package com.whoz_in.main_api; | ||
|
||
import org.springframework.boot.SpringApplication; | ||
import org.springframework.boot.autoconfigure.SpringBootApplication; | ||
|
||
@SpringBootApplication(scanBasePackages = {"com.whoz_in"}) | ||
public class WhozInApiApplication { | ||
public class MainApiApplication { | ||
|
||
public static void main(String[] args) { | ||
SpringApplication.run(WhozInApiApplication.class, args); | ||
SpringApplication.run(MainApiApplication.class, args); | ||
} | ||
|
||
} |
4 changes: 2 additions & 2 deletions
4
...command/device/application/DeviceAdd.java → ...command/device/application/DeviceAdd.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
.../device/application/DeviceAddHandler.java → .../device/application/DeviceAddHandler.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: 12 additions & 0 deletions
12
...in-api/src/main/java/com/whoz_in/main_api/command/member/presentation/AuthController.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,12 @@ | ||
package com.whoz_in.main_api.command.member.presentation; | ||
|
||
import com.whoz_in.main_api.shared.presentation.CommandQueryController; | ||
import com.whoz_in.main_api.shared.application.command.CommandBus; | ||
import com.whoz_in.main_api.shared.application.query.QueryBus; | ||
|
||
public class AuthController extends CommandQueryController { | ||
public AuthController(CommandBus commandBus, QueryBus queryBus) { | ||
super(commandBus, queryBus); | ||
} | ||
|
||
} |
8 changes: 4 additions & 4 deletions
8
...member/presentation/MemberController.java → ...member/presentation/MemberController.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
...com/whoz_in/api/config/JacksonConfig.java → ...hoz_in/main_api/config/JacksonConfig.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: 8 additions & 0 deletions
8
...main-api/src/main/java/com/whoz_in/main_api/query/device_info/application/DeviceInfo.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.whoz_in.main_api.query.device_info.application; | ||
|
||
import com.whoz_in.main_api.shared.application.query.Response; | ||
import com.whoz_in.main_api.shared.application.query.View; | ||
|
||
public final class DeviceInfo implements Response, View { | ||
|
||
} |
4 changes: 2 additions & 2 deletions
4
...evice_info/application/DeviceInfoGet.java → ...evice_info/application/DeviceInfoGet.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
...nfo/application/DeviceInfoGetHandler.java → ...nfo/application/DeviceInfoGetHandler.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
...ce_info/application/DeviceInfoViewer.java → ...ce_info/application/DeviceInfoViewer.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: 8 additions & 0 deletions
8
...ain-api/src/main/java/com/whoz_in/main_api/query/device_info/application/DevicesInfo.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.whoz_in.main_api.query.device_info.application; | ||
|
||
import com.whoz_in.main_api.shared.application.query.Response; | ||
import com.whoz_in.main_api.shared.application.query.View; | ||
|
||
public final class DevicesInfo implements Response, View { | ||
|
||
} |
7 changes: 7 additions & 0 deletions
7
...-api/src/main/java/com/whoz_in/main_api/query/device_info/application/DevicesInfoGet.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.whoz_in.main_api.query.device_info.application; | ||
|
||
import com.whoz_in.main_api.shared.application.query.Query; | ||
|
||
public final class DevicesInfoGet implements Query { | ||
|
||
} |
6 changes: 3 additions & 3 deletions
6
...fo/application/DevicesInfoGetHandler.java → ...fo/application/DevicesInfoGetHandler.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
...o/presentation/DeviceQueryController.java → ...o/presentation/DeviceQueryController.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: 8 additions & 0 deletions
8
modules/main-api/src/main/java/com/whoz_in/main_api/query/member/application/MemberGet.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.whoz_in.main_api.query.member.application; | ||
|
||
|
||
import com.whoz_in.main_api.shared.application.query.Query; | ||
|
||
public class MemberGet implements Query { | ||
|
||
} |
6 changes: 3 additions & 3 deletions
6
.../member/application/MemberGetHandler.java → .../member/application/MemberGetHandler.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
9 changes: 9 additions & 0 deletions
9
.../main-api/src/main/java/com/whoz_in/main_api/query/member/application/MemberResponse.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,9 @@ | ||
package com.whoz_in.main_api.query.member.application; | ||
|
||
import com.whoz_in.main_api.shared.application.query.Response; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
public final class MemberResponse implements Response { | ||
|
||
} |
2 changes: 1 addition & 1 deletion
2
...oz_in/api/shared/application/Handler.java → .../main_api/shared/application/Handler.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
...i/shared/application/command/Command.java → ...i/shared/application/command/Command.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
...hared/application/command/CommandBus.java → ...hared/application/command/CommandBus.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
...d/application/command/CommandHandler.java → ...d/application/command/CommandHandler.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
5 changes: 5 additions & 0 deletions
5
modules/main-api/src/main/java/com/whoz_in/main_api/shared/application/query/Query.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,5 @@ | ||
package com.whoz_in.main_api.shared.application.query; | ||
|
||
public interface Query { | ||
|
||
} |
2 changes: 1 addition & 1 deletion
2
...pi/shared/application/query/QueryBus.java → ...pi/shared/application/query/QueryBus.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
...hared/application/query/QueryHandler.java → ...hared/application/query/QueryHandler.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
5 changes: 5 additions & 0 deletions
5
modules/main-api/src/main/java/com/whoz_in/main_api/shared/application/query/Response.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,5 @@ | ||
package com.whoz_in.main_api.shared.application.query; | ||
|
||
public interface Response { | ||
|
||
} |
Oops, something went wrong.