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

net.anotheria.moskito.webui.threads.api.ActiveThreadHistoryAO Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
package net.anotheria.moskito.webui.threads.api;

import net.anotheria.moskito.core.util.threadhistory.ThreadHistoryEvent;

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

/**
 * TODO comment this class
 *
 * @author lrosenberg
 * @since 28.03.14 09:38
 */
public class ActiveThreadHistoryAO implements Serializable{
	/**
	 * SerialVersionUID.
	 */
	private static final long serialVersionUID = -6167788903860406929L;

	private List events;
	private boolean active;
	private int listSize;


	public List getEvents() {
		return events;
	}

	public void setEvents(List events) {
		this.events = events;
	}

	public boolean isActive() {
		return active;
	}

	public void setActive(boolean active) {
		this.active = active;
	}

	public void setListSize(int listSize) {
		this.listSize = listSize;
	}

	public int getListSize() {
		return listSize;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy