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

org.smartparam.coherence.jdbc.repository.ParamWithVersion Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy