com.evrythng.thng.resource.model.store.Timestamp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thng-resource-model Show documentation
Show all versions of thng-resource-model Show documentation
Models for REST resources representations.
/*
* (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