- java.lang.Object
-
- com.pervasive.datarush.authentication.Version
-
public class Version extends Object
Describes the version of the DataRush installation.
-
-
Constructor Summary
Constructors Constructor Description Version()
Creates a new version descriptor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDataflowVersion()
Gets the version number of the installed DataFlow.String
getImplementationVersion()
Gets build information about the installed DataRush.String
getSpecificationVersion()
Gets the version number of the installed DataRush.
-
-
-
Method Detail
-
getDataflowVersion
public String getDataflowVersion()
Gets the version number of the installed DataFlow. This value is obtained from the properties file generated by write-property-file Maven plugin- Returns:
- the version of DataFlow installed
-
getSpecificationVersion
public String getSpecificationVersion()
Gets the version number of the installed DataRush. This value is obtained from the specification version in the jarfile's manifest.- Returns:
- the version of DataRush which is installed
-
getImplementationVersion
public String getImplementationVersion()
Gets build information about the installed DataRush. This is more detailed data than is provided bygetSpecificationVersion()
and is typically only required by support personnel. This value is obtained from the implementation version in the jarfile's manifest.- Returns:
- build information about the installed version of DataRush
-
-