com.almworks.jira.structure.api.event.StructureDeletedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of structure-api Show documentation
Show all versions of structure-api Show documentation
Public API for the Structure Plugin for JIRA
The newest version!
package com.almworks.jira.structure.api.event;
/**
* Event indicating a structure has been deleted.
*/
public class StructureDeletedEvent {
private final long myStructureId;
public StructureDeletedEvent(long structureId) {
myStructureId = structureId;
}
public long getStructureId() {
return myStructureId;
}
}