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

net.anotheria.moskito.webui.journey.api.JourneyAO Maven / Gradle / Ivy

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

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

/**
 * Journey DTO to be used in the API Layer.
 *
 * @author lrosenberg
 * @since 05.04.14 11:37
 */
public class JourneyAO implements Serializable{
	/**
	 * SerialVersionUID.
	 */
	private static final long serialVersionUID = 7879831522564712294L;

	/**
	 * Contained calls.
	 */
	List calls;
	/**
	 * Name of the journey.
	 */
	private String name;
	/**
	 * If true the sessions is still active.
	 */
	private boolean active;
	/**
	 * Timestamp the journey was created.
	 */
	private long createdTimestamp;
	/**
	 * Timestamp of last activity in the session.
	 */
	private long lastActivityTimestamp;

	public List getCalls() {
		return calls;
	}

	public void setCalls(List calls) {
		this.calls = calls;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public boolean isActive() {
		return active;
	}

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

	public long getCreatedTimestamp() {
		return createdTimestamp;
	}

	public void setCreatedTimestamp(long createdTimestamp) {
		this.createdTimestamp = createdTimestamp;
	}

	public long getLastActivityTimestamp() {
		return lastActivityTimestamp;
	}

	public void setLastActivityTimestamp(long lastActivityTimestamp) {
		this.lastActivityTimestamp = lastActivityTimestamp;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy