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. IT IS AUTO GENERATED BY MAVEN */
package com.cloudhopper.smpp;
public final class Version {
private static final String COMMIT="71107647";
private static final String TIMESTAMP="20130309-2005";
private static final String VERSION="5.0.1";
private static final String NAME="ch-smpp";
private static final String VENDOR="com.cloudhopper";
private static final String LONG_VERSION="5.0.1 (commit 71107647 @ 20130309-2005)";
/** Returns the library source control commit tag such as "71107647" */
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 "20130309-2005" */
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.1" */
static public String getVersion() { return VERSION; }
/** Returns a longer library version that includes the timestamp such as "5.0.1 (commit 71107647; ts 20130309-2005)" */
static public String getLongVersion() { return LONG_VERSION; }
}