authtype changed

This commit is contained in:
insanity 2017-06-06 14:48:59 +09:00
parent 42aee25f0c
commit 540ed48d1e

View File

@ -4,9 +4,9 @@ package com.loafle.overflow.noauthagent.type;
* Created by root on 17. 5. 31. * Created by root on 17. 5. 31.
*/ */
public enum AuthType { public enum AuthType {
ACCEPT("ACT"), ACCEPT("ACCEPT"),
REFUSE("RFE"), REFUSE("REFUSE"),
WAIT("WIT"); WAIT("WAIT");
private String stringValue; private String stringValue;
AuthType(String string) {stringValue = string;} AuthType(String string) {stringValue = string;}