summaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/task/util/template/Variable.java
blob: 6b1ed3d7c35665cbfd2a40ed3008bc616289c23b (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
// 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;

import com.yahoo.vespa.hosted.node.admin.task.util.text.CursorRange;

import java.util.Optional;

/**
 * TODO: remove
 * @author hakonhall
 */
class Variable {
    private final String name;
    private final CursorRange firstVariableReferenceRange;
    private Optional<String> value = Optional.empty();

    Variable(String name, CursorRange firstVariableReferenceRange) {
        this.name = name;
        this.firstVariableReferenceRange = firstVariableReferenceRange;
    }

    void set(String value) { this.value = Optional.of(value); }
    Optional<String> get() { return value; }
}