public interface PatchingHistory
Modifier and Type | Interface and Description |
---|---|
static interface |
PatchingHistory.Entry
Information about a patch.
|
static class |
PatchingHistory.Factory |
static interface |
PatchingHistory.Iterator |
Modifier and Type | Method and Description |
---|---|
org.jboss.dmr.ModelNode |
getHistory()
Returns the history as a list of ModelNode's
Entry node has the following attributes:
- patch-id - the id of the patch;
- type - the type of the patch (cumulative or one-off);
- applied-at - a timestamp the patch was applied at.
|
org.jboss.dmr.ModelNode |
getHistory(PatchableTarget.TargetInfo info)
Same as getHistory() but for the specified target,
i.e.
|
PatchingHistory.Iterator |
iterator()
Returns an iterator over the history.
|
PatchingHistory.Iterator |
iterator(PatchableTarget.TargetInfo info)
Same as iterator() but starting from a specific point.
|
org.jboss.dmr.ModelNode getHistory() throws PatchingException
PatchingException
- in case there was an error loading the historyorg.jboss.dmr.ModelNode getHistory(PatchableTarget.TargetInfo info) throws PatchingException
info
- the point from which to load the historyPatchingException
- in case there was an error loading the historyPatchingHistory.Iterator iterator() throws PatchingException
PatchingException
- in case there was an error loading the historyPatchingHistory.Iterator iterator(PatchableTarget.TargetInfo info) throws PatchingException
info
- the point to start fromPatchingException
- in case there was an error loading the historyCopyright © 2023 JBoss by Red Hat. All rights reserved.