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

import java.util.Collections;
import java.util.Map;

/**
 * A set of fields that are imported from concrete fields in referenced document types.
 *
 * @author geirst
 */
public class ImportedFields {

    private final Map<String, ImportedField> fields;

    public ImportedFields(Map<String, ImportedField> fields) {
        this.fields = fields;
    }

    public Map<String, ImportedField> fields() {
        return Collections.unmodifiableMap(fields);
    }
}