From 540ed48d1e0fb118de7a9752a48b5b45a102c80c Mon Sep 17 00:00:00 2001 From: insanity Date: Tue, 6 Jun 2017 14:48:59 +0900 Subject: [PATCH] authtype changed --- .../java/com/loafle/overflow/noauthagent/type/AuthType.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/loafle/overflow/noauthagent/type/AuthType.java b/src/main/java/com/loafle/overflow/noauthagent/type/AuthType.java index 0abca85..b33b1fd 100644 --- a/src/main/java/com/loafle/overflow/noauthagent/type/AuthType.java +++ b/src/main/java/com/loafle/overflow/noauthagent/type/AuthType.java @@ -4,9 +4,9 @@ package com.loafle.overflow.noauthagent.type; * Created by root on 17. 5. 31. */ public enum AuthType { - ACCEPT("ACT"), - REFUSE("RFE"), - WAIT("WIT"); + ACCEPT("ACCEPT"), + REFUSE("REFUSE"), + WAIT("WAIT"); private String stringValue; AuthType(String string) {stringValue = string;}