Class AbstractTemplatesLoader<T>
- java.lang.Object
-
- jetbrains.buildServer.notification.AbstractTemplatesLoader<T>
-
public abstract class AbstractTemplatesLoader<T> extends Object
Deprecated.since 5.1. Isn't used in TeamCity notification component or by any known plugin. Most probably will be removed in future versions of TeamCity.Loads templates from specified XML file.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AbstractTemplatesLoader.TEMPLATE_TYPE
Deprecated.
-
Constructor Summary
Constructors Constructor Description AbstractTemplatesLoader()
Deprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected abstract T
createTemplate(org.jdom.Element templateElement)
Deprecated.void
load(TemplateConfig<T> templateConfig, org.jdom.Element rootElement)
Deprecated.Loads notificator templates.
-
-
-
Method Detail
-
load
public void load(TemplateConfig<T> templateConfig, org.jdom.Element rootElement)
Deprecated.Loads notificator templates. For every <template/> element createTemplate() method will be called and result will be stored in this object depending on the event type of the created template.
-
createTemplate
protected abstract T createTemplate(org.jdom.Element templateElement)
Deprecated.
-
-