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 StringgetBuild()Build timestamp, format yyyyMMddhhmmss.StringgetProduct()The product name, "Rhino" or "RhinoSDK".StringgetRelease()Release number, e.g., "00".StringgetRevision()VCS revision string.StringgetVersion()Version string, e.g., "2.2".StringtoString()A string representation of this version data, formatted as in Rhino server logs.
-
-
-
Method Detail
-
getProduct
public String getProduct()
Description copied from interface:RhinoVersionThe product name, "Rhino" or "RhinoSDK".- Specified by:
getProductin interfaceRhinoVersion- Returns:
- product name
-
getVersion
public String getVersion()
Description copied from interface:RhinoVersionVersion string, e.g., "2.2".- Specified by:
getVersionin interfaceRhinoVersion- Returns:
- version
-
getRelease
public String getRelease()
Description copied from interface:RhinoVersionRelease number, e.g., "00".- Specified by:
getReleasein interfaceRhinoVersion- Returns:
- release number
-
getBuild
public String getBuild()
Description copied from interface:RhinoVersionBuild timestamp, format yyyyMMddhhmmss.- Specified by:
getBuildin interfaceRhinoVersion- Returns:
- timestamp
-
getRevision
public String getRevision()
Description copied from interface:RhinoVersionVCS revision string.- Specified by:
getRevisionin interfaceRhinoVersion- Returns:
- revision string
-
toString
public final String toString()
Description copied from interface:RhinoVersionA string representation of this version data, formatted as in Rhino server logs.- Specified by:
toStringin interfaceRhinoVersion- Overrides:
toStringin classObject- Returns:
- all version data as a String
-
-