aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/schema/document/ImportedFields.java
blob: f6654896fae9fb7dd908ab2d326b85e4b544a24d (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 Yahoo. 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);
    }
}