-
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.
- Loading branch information
1 parent
faf5efc
commit cd34b3d
Showing
10 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
src/main/java/com/kakaoteck/golagola/config/util/ApplicationConfig.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,4 @@ | ||
package com.kakaoteck.golagola.config.util; | ||
|
||
public class ApplicationConfig { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/com/kakaoteck/golagola/config/util/SecurityConfig.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,4 @@ | ||
package com.kakaoteck.golagola.config.util; | ||
|
||
public class SecurityConfig { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/com/kakaoteck/golagola/security/filter/JwtAuthenticationFilter.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,4 @@ | ||
package com.kakaoteck.golagola.security.filter; | ||
|
||
public class JwtAuthenticationFilter { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/com/kakaoteck/golagola/security/service/JwtService.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,4 @@ | ||
package com.kakaoteck.golagola.security.service; | ||
|
||
public class JwtService { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/com/kakaoteck/golagola/security/service/LogoutService.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,4 @@ | ||
package com.kakaoteck.golagola.security.service; | ||
|
||
public class LogoutService { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/com/kakaoteck/golagola/security/token/Token.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,4 @@ | ||
package com.kakaoteck.golagola.security.token; | ||
|
||
public class Token { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/com/kakaoteck/golagola/security/token/TokenBlackList.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,4 @@ | ||
package com.kakaoteck.golagola.security.token; | ||
|
||
public class TokenBlackList { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/com/kakaoteck/golagola/security/token/TokenBlackListRepository.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,4 @@ | ||
package com.kakaoteck.golagola.security.token; | ||
|
||
public interface TokenBlackListRepository { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/com/kakaoteck/golagola/security/token/TokenRepository.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,4 @@ | ||
package com.kakaoteck.golagola.security.token; | ||
|
||
public interface TokenRepository { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/com/kakaoteck/golagola/security/token/enums/TokenType.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,4 @@ | ||
package com.kakaoteck.golagola.security.token.enums; | ||
|
||
public enum TokenType { | ||
} |