Class ExtensionListEntry
- java.lang.Object
-
- org.jboss.as.server.deployment.module.ExtensionListEntry
-
public final class ExtensionListEntry extends Object
An extension list entry.- Author:
- David M. Lloyd
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description URIgetImplementationUrl()Get the implementation URL.StringgetImplementationVendorId()Get the implementation vendor ID.StringgetImplementationVersion()Get the implementation version.StringgetName()Get the extension name.StringgetSpecificationVersion()Get the specification version.StringgetTitle()Get the extension list title (from theExtension-Listattribute) for this entry.StringtoString()
-
-
-
Constructor Detail
-
ExtensionListEntry
public ExtensionListEntry(String title, String name, String specificationVersion, String implementationVersion, String implementationVendorId, URI implementationUrl)
Construct a new instance.- Parameters:
title- the name of the value of theExtension-Listattribute for this itemname- the value of the<extension>-Extension-NameattributespecificationVersion- the value of the<extension>-Specification-VersionattributeimplementationVersion- the value of the<extension>-Implementation-VersionattributeimplementationVendorId- the value of the<extension>-Implementation-Vendor-IdattributeimplementationUrl- the value of the<extension>-Implementation-URLattribute
-
-
Method Detail
-
getTitle
public String getTitle()
Get the extension list title (from theExtension-Listattribute) for this entry.- Returns:
- the title
-
getName
public String getName()
Get the extension name.- Returns:
- the extension name
-
getSpecificationVersion
public String getSpecificationVersion()
Get the specification version.- Returns:
- the specification version
-
getImplementationVersion
public String getImplementationVersion()
Get the implementation version.- Returns:
- the implementation version
-
getImplementationVendorId
public String getImplementationVendorId()
Get the implementation vendor ID.- Returns:
- the implementation vendor ID
-
getImplementationUrl
public URI getImplementationUrl()
Get the implementation URL.- Returns:
- the implementation URL
-
-