Package jenkins.model.lazy
Class LazyBuildMixIn.ItemListenerImpl
java.lang.Object
hudson.model.listeners.ItemListener
jenkins.model.lazy.LazyBuildMixIn.ItemListenerImpl
- All Implemented Interfaces:
ExtensionPoint
- Enclosing class:
- LazyBuildMixIn<JobT extends Job<JobT,
RunT> & Queue.Task & LazyBuildMixIn.LazyLoadingJob<JobT, RunT>, RunT extends Run<JobT, RunT> & LazyBuildMixIn.LazyLoadingRun<JobT, RunT>>
@Restricted(org.kohsuke.accmod.restrictions.DoNotUse.class)
@Extension
public static final class LazyBuildMixIn.ItemListenerImpl
extends ItemListener
-
Nested Class Summary
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onLocationChanged
(Item item, String oldFullName, String newFullName) Called after an item’s fully-qualified location has changed.Methods inherited from class hudson.model.listeners.ItemListener
all, checkBeforeCopy, checkBeforeDelete, fireLocationChange, fireOnCopied, fireOnCreated, fireOnDeleted, fireOnUpdated, onBeforeShutdown, onCheckCopy, onCheckDelete, onCopied, onCreated, onDeleted, onLoaded, onRenamed, onUpdated, register
-
Constructor Details
-
ItemListenerImpl
public ItemListenerImpl()
-
-
Method Details
-
onLocationChanged
Description copied from class:ItemListener
Called after an item’s fully-qualified location has changed. This might be because:- This item was renamed.
- Some ancestor folder was renamed.
- This item was moved between folders (or from a folder to Jenkins root or vice-versa).
- Some ancestor folder was moved.
ItemListener.onRenamed(hudson.model.Item, java.lang.String, java.lang.String)
will already have been called on this item or an ancestor. And where applicable,ItemListener.onLocationChanged(hudson.model.Item, java.lang.String, java.lang.String)
will already have been called on its ancestors.This method should be used (instead of
ItemListener.onRenamed(hudson.model.Item, java.lang.String, java.lang.String)
) by any code which seeks to keep (absolute) references to items up to date: if a persisted reference matchesoldFullName
, replace it withnewFullName
.- Overrides:
onLocationChanged
in classItemListener
- Parameters:
item
- an item whose absolute position is now differentoldFullName
- the formerItem.getFullName()
newFullName
- the currentItem.getFullName()
- See Also:
-