All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.almworks.jira.structure.api.template.NewStructureTemplateContext Maven / Gradle / Ivy

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy