jadex.bridge.service.component.interceptors.SpanContextInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-platform-bridge Show documentation
Show all versions of jadex-platform-bridge Show documentation
Jadex bridge is a base package for kernels and platforms, i.e., it is used by both and provides commonly used interfaces and classes for active components and their management.
package jadex.bridge.service.component.interceptors;
import java.util.Map;
/**
* Struct for sending spans.
*/
public class SpanContextInfo
{
/** The values. */
protected Map values;
/**
* Create a new span context info.
*/
public SpanContextInfo()
{
}
/**
* Create a new span context info.
*/
public SpanContextInfo(Map values)
{
this.values = values;
}
/**
* @return the values
*/
public Map getValues()
{
return values;
}
/**
* @param values the values to set
*/
public void setValues(Map values)
{
this.values = values;
}
}