Added ISO.UPDATE event for update ISO command.

This commit is contained in:
Maxim Prokopchuk 2022-06-22 10:14:26 -07:00
parent e7eec8d0da
commit 277f76f398
2 changed files with 2 additions and 1 deletions

View File

@ -278,6 +278,7 @@ public class EventTypes {
// ISO
public static final String EVENT_ISO_CREATE = "ISO.CREATE";
public static final String EVENT_ISO_UPDATE = "ISO.UPDATE";
public static final String EVENT_ISO_DELETE = "ISO.DELETE";
public static final String EVENT_ISO_COPY = "ISO.COPY";
public static final String EVENT_ISO_ATTACH = "ISO.ATTACH";

View File

@ -2033,7 +2033,7 @@ public class TemplateManagerImpl extends ManagerBase implements TemplateManager,
}
@Override
@ActionEvent(eventType = EventTypes.EVENT_TEMPLATE_UPDATE, eventDescription = "updating template", async = false)
@ActionEvent(eventType = EventTypes.EVENT_ISO_UPDATE, eventDescription = "updating iso", async = false)
public VMTemplateVO updateTemplate(UpdateIsoCmd cmd) {
return updateTemplateOrIso(cmd);
}