Package hudson.plugins.jobConfigHistory
Interface ItemListenerHistoryDao
-
- All Known Implementing Classes:
FileHistoryDao
,JobConfigHistoryStrategy
public interface ItemListenerHistoryDao
Operations for historization of config files.- Author:
- Mirko Friedenhagen
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
changeItemLocation(Item item, String oldFullName, String newFullName)
Changes the item's history's location.void
createNewItem(Item item)
Adds and saves the initial configuration of an item.void
deleteItem(Item item)
Deletes the history of an item.void
renameItem(Item item, String oldName, String newName)
Save and renames the item.
-
-
-
Method Detail
-
createNewItem
void createNewItem(Item item)
Adds and saves the initial configuration of an item.- Parameters:
item
- project
-
renameItem
void renameItem(Item item, String oldName, String newName)
Save and renames the item.- Parameters:
item
- projectoldName
- old project namenewName
- new name
-
deleteItem
void deleteItem(Item item)
Deletes the history of an item.- Parameters:
item
- project
-
-