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

com.google.cloud.logging.TraceContext Maven / Gradle / Ivy

package com.google.cloud.logging;

public class TraceContext {
    private final String traceId;
    private final String spanId;

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

    public String getTraceId() {
        return traceId;
    }

    public String getSpanId() {
        return spanId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy