summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/vespa/model/search/SearchDefinitionXMLHandler.java
blob: e1ed241ce4584a5f6697084ea55e6d868a669249 (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 2017 Yahoo Holdings. 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 searchdefinition file.
 *
 * @author arnej27959
 */
public class SearchDefinitionXMLHandler implements Serializable {

    private String sdName;

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

    public String getName() { return sdName; }

    public Schemas getResponsibleSearchDefinition(List<Schemas> searchDefinitions) {
        return Schemas.findByName(getName(), searchDefinitions );
    }

}