All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.lontime.exthttp.common.ServerCookieDecoderEnum Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
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;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy