-
public interface ContainerDescriptionInformation about the running container.- Author:
- James R. Perkins
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetLaunchType()Returns the type of the server that was launched.StringgetProductName()Returns the name of the product.StringgetProductVersion()Returns the product version, if defined, ornullif the product version was not defined.StringgetReleaseVersion()Returns the release version, if defined, ornullif the release version was not defined.booleanisDomain()Checks if the server is a managed domain server.
-
-
-
Method Detail
-
getProductName
String getProductName()
Returns the name of the product.- Returns:
- the name of the product
-
getProductVersion
String getProductVersion()
Returns the product version, if defined, ornullif the product version was not defined.- Returns:
- the product version or
nullif not defined
-
getReleaseVersion
String getReleaseVersion()
Returns the release version, if defined, ornullif the release version was not defined.Note that in WildFly 9+ this is usually the version for WildFly Core. In WildFly 8 this is the full version.
- Returns:
- the release version or
nullif not defined
-
getLaunchType
String getLaunchType()
Returns the type of the server that was launched.- Returns:
- the type of the server that was launched or
nullif not defined
-
isDomain
boolean isDomain()
Checks if the server is a managed domain server.- Returns:
trueif this is a managed domain, otherwisefalse
-
-