Skip to content

Commit

Permalink
SCRUM-48 feat: Spring Security init
Browse files Browse the repository at this point in the history
  • Loading branch information
yeopyeop-82 committed Aug 12, 2024
1 parent faf5efc commit cd34b3d
Show file tree
Hide file tree
Showing 10 changed files with 40 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.kakaoteck.golagola.config.util;

public class ApplicationConfig {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.kakaoteck.golagola.config.util;

public class SecurityConfig {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.kakaoteck.golagola.security.filter;

public class JwtAuthenticationFilter {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.kakaoteck.golagola.security.service;

public class JwtService {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.kakaoteck.golagola.security.service;

public class LogoutService {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.kakaoteck.golagola.security.token;

public class Token {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.kakaoteck.golagola.security.token;

public class TokenBlackList {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.kakaoteck.golagola.security.token;

public interface TokenBlackListRepository {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.kakaoteck.golagola.security.token;

public interface TokenRepository {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.kakaoteck.golagola.security.token.enums;

public enum TokenType {
}

0 comments on commit cd34b3d

Please sign in to comment.