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

org.headlessintrace.client.request.IRequest Maven / Gradle / Ivy

Go to download

A headless java API that collects events from other JVMs. Events=method invocations. Initial code taken from http://mchr3k.github.io/org.intrace/. Intended for building diagnostic applications.

There is a newer version: 0.0.4
Show newest version
package org.headlessintrace.client.request;

import java.io.Serializable;
import java.util.List;
import java.util.UUID;

import org.headlessintrace.client.model.ITraceEvent;

/**
 * A value object that holds all traced events for a particular request/thread.
 * @author erikostermueller
 *
 */
public interface IRequest extends Serializable {
	boolean isInitialized();
	void setInitialized(boolean val);
	List getEvents();
	void setEvents(List events);
	void setThreadId(String threadId);
	public abstract String getThreadId();
	String getUniqueId();
	void setUniqueId(String uniqueId);
	String getUrl();
	void setUrl(String val);
	String getHttpResponseCode();
	void setHttpResponseCode(String val);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy