Package com.opencloud.slee.remote
Class VersionImpl
- java.lang.Object
-
- com.opencloud.slee.remote.VersionImpl
-
- All Implemented Interfaces:
RhinoVersion
public class VersionImpl extends Object implements RhinoVersion
-
-
Method Summary
All Methods Instance Methods Concrete 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
public String getProduct()
Description copied from interface:RhinoVersion
The product name, "Rhino" or "RhinoSDK".- Specified by:
getProduct
in interfaceRhinoVersion
- Returns:
- product name
-
getVersion
public String getVersion()
Description copied from interface:RhinoVersion
Version string, e.g., "2.2".- Specified by:
getVersion
in interfaceRhinoVersion
- Returns:
- version
-
getRelease
public String getRelease()
Description copied from interface:RhinoVersion
Release number, e.g., "00".- Specified by:
getRelease
in interfaceRhinoVersion
- Returns:
- release number
-
getBuild
public String getBuild()
Description copied from interface:RhinoVersion
Build timestamp, format yyyyMMddhhmmss.- Specified by:
getBuild
in interfaceRhinoVersion
- Returns:
- timestamp
-
getRevision
public String getRevision()
Description copied from interface:RhinoVersion
VCS revision string.- Specified by:
getRevision
in interfaceRhinoVersion
- Returns:
- revision string
-
toString
public final String toString()
Description copied from interface:RhinoVersion
A string representation of this version data, formatted as in Rhino server logs.- Specified by:
toString
in interfaceRhinoVersion
- Overrides:
toString
in classObject
- Returns:
- all version data as a String
-
-