com.almworks.jira.structure.api.template.NewStructureTemplateContext 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.template;
import com.atlassian.velocity.htmlsafe.HtmlSafe;
import java.util.Map;
/**
* @author alexeypegov
*/
public interface NewStructureTemplateContext {
@HtmlSafe
String htmlEncode(String s);
@HtmlSafe
String getText(String key);
@HtmlSafe
String getText(String key, String... values);
Map getErrors();
void addError(String fieldKey, String message);
}