Package com.opencloud.slee.remote
Interface RhinoVersion
-
- All Known Implementing Classes:
VersionImpl
public interface RhinoVersion
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getBuild()
Build timestamp, format yyyyMMddhhmmss.String
getProduct()
The product name, "Rhino" or "RhinoSDK".String
getRelease()
Release number, e.g., "00".String
getRevision()
VCS revision string.String
getVersion()
Version string, e.g., "2.2".String
toString()
A string representation of this version data, formatted as in Rhino server logs.
-
-
-
Method Detail
-
getProduct
String getProduct()
The product name, "Rhino" or "RhinoSDK".- Returns:
- product name
-
getVersion
String getVersion()
Version string, e.g., "2.2".- Returns:
- version
-
getRelease
String getRelease()
Release number, e.g., "00".- Returns:
- release number
-
getBuild
String getBuild()
Build timestamp, format yyyyMMddhhmmss.- Returns:
- timestamp
-
getRevision
String getRevision()
VCS revision string.- Returns:
- revision string
-
-