aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/task/util/template/TemplateDescriptor.java
blob: 40e2c051f6a1a79b1fe711d35a3822204cd43ed8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.node.admin.task.util.template;

/**
 * Specifies the how to interpret a template text.
 *
 * @author hakonhall
 */
public class TemplateDescriptor {
    private String startDelimiter = "%{";
    private String endDelimiter = "}";
    private boolean removeNewlineAfterSection = true;

    public TemplateDescriptor() {}

    public TemplateDescriptor(TemplateDescriptor that) {
        this.startDelimiter = that.startDelimiter;
        this.endDelimiter = that.endDelimiter;
        this.removeNewlineAfterSection = that.removeNewlineAfterSection;
    }

    /** Use these delimiters instead of the standard "%{" and "}" to start and end a template directive. */
    public TemplateDescriptor setDelimiters(String startDelimiter, String endDelimiter) {
        this.startDelimiter = Token.verifyDelimiter(startDelimiter);
        this.endDelimiter = Token.verifyDelimiter(endDelimiter);
        return this;
    }

    /** Whether to remove a newline following each (non-variable) section, by default true. */
    public TemplateDescriptor setRemoveNewlineAfterSection(boolean removeNewlineAfterSection) {
        this.removeNewlineAfterSection = removeNewlineAfterSection;
        return this;
    }

    public String startDelimiter() { return startDelimiter; }
    public String endDelimiter() { return endDelimiter; }
    public boolean removeNewlineAfterSection() { return removeNewlineAfterSection; }
}