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

pro.chenggang.plugin.springcloud.gateway.context.GreyContext Maven / Gradle / Ivy

There is a newer version: 2.1.SR2.2.RELEASE
Show newest version
package pro.chenggang.plugin.springcloud.gateway.context;

import lombok.Getter;
import lombok.Setter;
import lombok.ToString;

/**
 * Grey Context For Grey Route
 * @author chenggang
 * @date 2019/01/29
 */
@Setter
@Getter
@ToString
public class GreyContext {

    public static final String CACHE_GREY_CONTEXT = "cacheGreyContext";
    /**
     * ServiceId
     */
    private String serviceId;
    /**
     * Version
     */
    private String version;
    /**
     * Matched The Grey Rule
     */
    private boolean matched;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy