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

com.didiglobal.logi.log.common.TraceContext Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
package com.didiglobal.logi.log.common;

/**
 * @author jinbinbin
 * @version $Id: TraceContext.java, v 0.1 2019年01月20日 19:32 jinbinbin Exp $
 */
public class TraceContext {

    private String traceId;
    private String spanId;
    private String cspanId;

    public String getTraceId() {
        return traceId;
    }

    public String getSpanId() {
        return spanId;
    }

    public String getCspanId() {
        return cspanId;
    }

    public void setCspanId(String cspanId) {
        this.cspanId = cspanId;
    }

    public TraceContext(String traceId, String spanId){
        this.traceId = traceId;
        this.spanId = spanId;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy