com.aol.micro.server.couchbase.base.Data Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micro-couchbase Show documentation
Show all versions of micro-couchbase Show documentation
Opinionated rest microservices
package com.aol.micro.server.couchbase.base;
import java.io.Serializable;
import java.util.Date;
import lombok.Getter;
public class Data implements Serializable{
private static final long serialVersionUID = 1L;
@Getter
private final T data;
@Getter
private final Date date;
@Getter
private final String versionedKey;
public Data(T data, Date date, String versionedKey){
this.data = data;
this.date = date;
this.versionedKey = versionedKey;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy