summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/vespa/model/search/SchemaDefinitionXMLHandler.java
blob: 881b68e839632975403a352579689b4067986aeb (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.model.search;

import com.yahoo.vespa.model.builder.xml.dom.ModelElement;

import java.io.Serializable;
import java.util.List;

/**
 * Represents a single schema file.
 *
 * @author arnej27959
 */
public class SchemaDefinitionXMLHandler implements Serializable {

    private String sdName;

    public SchemaDefinitionXMLHandler(ModelElement elem) {
        sdName = elem.stringAttribute("name");
        if (sdName == null) {
            sdName = elem.stringAttribute("type");
        }
    }

    public String getName() { return sdName; }

    public NamedSchema getResponsibleSearchDefinition(List<NamedSchema> schemas) {
        return NamedSchema.findByName(getName(), schemas );
    }

}