Interface ServerModel
-
public interface ServerModelScript / Template Model representing the server hosting the Web Script Framework- Author:
- davidc
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetContainerName()Gets the Container Namejava.lang.StringgetEdition()Gets the editionjava.lang.StringgetId()Gets the Id of the server instancejava.lang.StringgetName()Gets the Name of the server instanceintgetSchema()Gets the schema numberjava.lang.StringgetVersion()Gets the full version numberjava.lang.StringgetVersionBuild()Gets the build numberjava.lang.StringgetVersionLabel()Gets the version labeljava.lang.StringgetVersionMajor()Gets the major version number, e.g.java.lang.StringgetVersionMinor()Gets the minor version number, e.g.java.lang.StringgetVersionRevision()Gets the version revision number, e.g.
-
-
-
Method Detail
-
getContainerName
java.lang.String getContainerName()
Gets the Container Name- Returns:
- container name
-
getId
java.lang.String getId()
Gets the Id of the server instance- Returns:
- id
-
getName
java.lang.String getName()
Gets the Name of the server instance
-
getVersionMajor
java.lang.String getVersionMajor()
Gets the major version number, e.g. 1.2.3- Returns:
- major version number
-
getVersionMinor
java.lang.String getVersionMinor()
Gets the minor version number, e.g. 1.2.3- Returns:
- minor version number
-
getVersionRevision
java.lang.String getVersionRevision()
Gets the version revision number, e.g. 1.2.3- Returns:
- revision number
-
getVersionLabel
java.lang.String getVersionLabel()
Gets the version label- Returns:
- the version label
-
getVersionBuild
java.lang.String getVersionBuild()
Gets the build number- Returns:
- the build number i.e. build-1
-
getVersion
java.lang.String getVersion()
Gets the full version number- Returns:
- full version number as major.minor.revision (label)
-
getEdition
java.lang.String getEdition()
Gets the edition- Returns:
- the edition
-
getSchema
int getSchema()
Gets the schema number- Returns:
- a positive integer
-
-