
com.almworks.jira.structure.api2g.template.NewStructureTemplate 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
package com.almworks.jira.structure.api2g.template;
import com.almworks.jira.structure.api2g.structure.Structure;
import org.jetbrains.annotations.NotNull;
import java.util.Map;
/**
* @author alexeypegov
*/
public interface NewStructureTemplate {
boolean isEnabled();
@NotNull
String getInitialStep();
@NotNull
NewStructureTemplateStep createStep(@NotNull String step, @NotNull Map params, NewStructureTemplateContext context) throws StructureTemplateException;
void configureNewStructure(@NotNull Structure structure, @NotNull Map params) throws StructureTemplateException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy