org.infinispan.client.hotrod.Version Maven / Gradle / Ivy
package org.infinispan.client.hotrod;
/**
* Defines client and protocol version.
*
* @author [email protected]
* @since 4.1
*/
public class Version {
private static final String PROTOCOL_VERSION = "2.0";
public static String getProtocolVersion() {
return "HotRod client, protocol version :" + PROTOCOL_VERSION;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy