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

import com.yahoo.document.Field;

/**
 * Represents a document reference. Contains the document reference field and the search instance of the referred document.
 *
 * @author bjorncs
 */
public class DocumentReference {

    private final Field referenceField;
    private final Schema targetSchema;

    public DocumentReference(Field referenceField, Schema targetSchema) {
        this.referenceField = referenceField;
        this.targetSchema = targetSchema;
    }

    public Field referenceField() {
        return referenceField;
    }

    public Schema targetSearch() {
        return targetSchema;
    }
}