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

jadex.bridge.service.component.interceptors.SpanContextInfo Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 4.0.267
Show newest version
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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy