org.smartparam.coherence.jdbc.repository.ParamWithVersion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smartparam-coherent-cache-jdbc Show documentation
Show all versions of smartparam-coherent-cache-jdbc Show documentation
SmartParam cache coherence mechanism based on JDBC.
The newest version!
package org.smartparam.coherence.jdbc.repository;
public class ParamWithVersion {
private String name;
private Long version;
public ParamWithVersion(String name, Long version) {
this.name = name;
this.version = version;
}
public String getName() {
return name;
}
public Long getVersion() {
return version;
}
}