com.github.lontime.exthttp.common.ServerCookieDecoderEnum Maven / Gradle / Ivy
package com.github.lontime.exthttp.common;
import io.netty.handler.codec.http.cookie.ServerCookieDecoder;
/**
* ClientCookieDecoderEnum.
* @author lontime
* @since 1.0
*/
public enum ServerCookieDecoderEnum {
/**
* STRICT.
*/
STRICT,
/**
* LAX.
*/
LAX;
public ServerCookieDecoder toCookieDecoder() {
switch (this) {
case STRICT:
return ServerCookieDecoder.STRICT;
default:
return ServerCookieDecoder.LAX;
}
}
}