aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/schema/document/TemporaryImportedField.java
blob: 001f489dbded9a7cfa8b5bba098a9baa8b56e847 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.schema.document;

/**
 * A field that is imported from a field in a referenced document type and given an alias name.
 *
 * This is temporary AST structure that only refers to the imported field by name.
 *
 * @author geirst
 */
public class TemporaryImportedField {

    private final String fieldName;
    private final String referenceFieldName;
    private final String targetFieldName;

    public TemporaryImportedField(String fieldName,
                                  String referenceFieldName,
                                  String targetFieldName) {
        this.fieldName = fieldName;
        this.referenceFieldName = referenceFieldName;
        this.targetFieldName = targetFieldName;
    }

    public String fieldName() {
        return fieldName;
    }

    public String referenceFieldName() {
        return referenceFieldName;
    }

    public String targetFieldName() {
        return targetFieldName;
    }

}