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;
}
}