Skip to content

Commit e575fb9

Browse files
committed
CLAP-84 Feat: auth 관련 상수 클래스 추가
<footer> - 관련: #43
1 parent 8ccafdb commit e575fb9

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package clap.server.common;
2+
3+
import lombok.Getter;
4+
5+
@Getter
6+
public enum AuthConstants {
7+
AUTHORIZATION("Authorization"), TOKEN_PREFIX("Bearer ");
8+
9+
private final String value;
10+
11+
AuthConstants(String value) {
12+
this.value = value;
13+
}
14+
}

0 commit comments

Comments
 (0)