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.
*/
public enum AuthType {
ACCEPT("ACT"),
REFUSE("RFE"),
WAIT("WIT");
ACCEPT("ACCEPT"),
REFUSE("REFUSE"),
WAIT("WAIT");
private String stringValue;
AuthType(String string) {stringValue = string;}