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

fun.fengwk.gateway.share.constant.GatewayBaggageKey Maven / Gradle / Ivy

The newest version!
package fun.fengwk.gateway.share.constant;

/**
 * @author fengwk
 */
public enum GatewayBaggageKey {

    REAL_IP("Gateway-Real-IP"),
    ACCESS_USER_NAMESPACE("Gateway-Access-User-Namespace"),
    ACCESS_USER_ID("Gateway-Access-User-ID"),
    ;

    private final String code;

    GatewayBaggageKey(String code) {
        this.code = code;
    }

    public String getCode() {
        return code;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy