Package org.jboss.as.patching.generator
Interface PatchElementConfig
-
public interface PatchElementConfig- Author:
- Emanuel Muckenhuber
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription()Get the patch description.StringgetLayerName()Get the layer name.StringgetPatchId()Get the unique patch ID.org.jboss.as.patching.metadata.Patch.PatchTypegetPatchType()Get the patch type.Set<org.jboss.as.patching.metadata.ContentItem>getSpecifiedContent()Gets the modifications specifically specified in the patch config, if the config doesn't specifygenerating the modifications by differencing the two distributions.
-
-
-
Method Detail
-
getPatchId
String getPatchId()
Get the unique patch ID.- Returns:
- the patch id
-
getDescription
String getDescription()
Get the patch description.- Returns:
- the patch description
-
getLayerName
String getLayerName()
Get the layer name.- Returns:
- the layer name
-
getPatchType
org.jboss.as.patching.metadata.Patch.PatchType getPatchType()
Get the patch type.- Returns:
- the type of the patch
-
getSpecifiedContent
Set<org.jboss.as.patching.metadata.ContentItem> getSpecifiedContent()
Gets the modifications specifically specified in the patch config, if the config doesn't specifygenerating the modifications by differencing the two distributions.- Returns:
- the modified content items
-
-