com.cloudhopper.smpp.Version Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ch-smpp Show documentation
Show all versions of ch-smpp Show documentation
Efficient, scalable, and flexible Java implementation of the Short Messaging Peer to Peer Protocol (SMPP)
/**
* DO NOT EDIT THIS FILE (auto generated by fizzed-versionizer-maven-plugin)
*/
package com.cloudhopper.smpp;
public final class Version {
private static final String COMMIT="6e677cef";
private static final String TIMESTAMP="2015-11-24T22:04:44.496Z";
private static final String VERSION="5.0.9";
private static final String NAME="ch-smpp";
private static final String VENDOR="com.cloudhopper";
private static final String LONG_VERSION="5.0.9 (commit 6e677cef @ 2015-11-24T22:04:44.496Z)";
/** Returns the library source control commit tag such as "ac486420" */
static public String getCommit() { return COMMIT; }
/** Returns the library vendor such as "com.cloudhopper" */
static public String getVendor() { return VENDOR; }
/** Returns the library build timestamp (date) such as "2015-11-24T22:04:44.496Z" */
static public String getTimestamp() { return TIMESTAMP; }
/** Returns the library name such as "ch-smpp" */
static public String getName() { return NAME; }
/** Returns the library version such as "5.0.9" */
static public String getVersion() { return VERSION; }
/** Returns a longer library version that includes the timestamp such as "5.0.9 (commit 6e677cef @ 2015-11-24T22:04:44.496Z)" */
static public String getLongVersion() { return LONG_VERSION; }
}