aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/vespa/model/builder/xml/dom/DomFilterBuilder.java
blob: 741b6f999442a854bfcbbc7dcbf23e07919d8d14 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.model.builder.xml.dom;

import com.yahoo.config.model.producer.AbstractConfigProducer;
import com.yahoo.vespa.model.container.component.Component;
import com.yahoo.vespa.model.container.component.HttpFilter;
import com.yahoo.vespa.model.container.xml.BundleInstantiationSpecificationBuilder;
import org.w3c.dom.Element;

/**
 * @author tonytv
 */
public class DomFilterBuilder extends VespaDomBuilder.DomConfigProducerBuilder<Component> {
    @Override
    protected Component doBuild(AbstractConfigProducer ancestor, Element element) {
        return new HttpFilter(BundleInstantiationSpecificationBuilder.build(element, false));
    }
}