Interface ApplicationVersion
-
- All Superinterfaces:
Serializable
public interface ApplicationVersion extends Serializable
The version of the application.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description String
getDisplayVersion()
Returns the display version of the application.String
getFullVersion()
Returns the full version of the application release.Integer
getMajor()
Deprecated.Integer
getMinor()
Deprecated.
-
-
-
Method Detail
-
getMajor
@Deprecated Integer getMajor()
Deprecated.Returns the major version number of the application version. This version number is increased with the major changes and releases of the application.- Returns:
- the major version number of the application version
-
getMinor
@Deprecated Integer getMinor()
Deprecated.Returns the minor version number of the application version. This version number is increased whenever new features are added in given release.- Returns:
- the minor version number of the application version
-
getFullVersion
String getFullVersion()
Returns the full version of the application release.- Returns:
- the full version of the application release
-
getDisplayVersion
String getDisplayVersion()
Returns the display version of the application. This is the version to be displayed to the customer, which can be different from the actual internal version.- Returns:
- the display version
-
-