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

com.evrythng.thng.resource.model.store.Timestamp Maven / Gradle / Ivy

There is a newer version: 1.33
Show newest version
/*
 * (c) Copyright 2012 EVRYTHNG Ltd London / Zurich
 * www.evrythng.com
 */
package com.evrythng.thng.resource.model.store;

import java.io.Serializable;

/**
 * Model class for a timestamp.
 *
 * @deprecated Since 1.18.1 Use TimeInfo instead.
 */
@Deprecated
public class Timestamp implements Serializable {

	private static final long serialVersionUID = -2460519576290598569L;
	private Long timestamp;

	/**
	 * @return the timestamp
	 */
	public Long getTimestamp() {

		return timestamp;
	}

	/**
	 * @param timestamp the timestamp to set
	 */
	public void setTimestamp(final Long timestamp) {

		this.timestamp = timestamp;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy