b81cff29c6686eea8751c61f530247511e6b8284
[bgpcep.git] / config-loader / config-loader-spi / src / main / java / org / opendaylight / protocol / bgp / config / loader / spi / ConfigFileProcessor.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.protocol.bgp.config.loader.spi;
10
11 import javax.annotation.Nonnull;
12 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
13 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
14
15 /**
16  * Takes care of obtain object schema, schema Qname is used as base to create a pattern
17  * (Qname + "-" + * + ".xml") to recognize which files needs to be processed by each
18  * e.g. ProtocolsConfigFileProcessor will process any file containing the naming protocols-*.xml
19  */
20 public interface ConfigFileProcessor {
21
22     /**
23      * Schema Path to search for.
24      *
25      * @return SchemaPath
26      */
27     @Nonnull SchemaPath getSchemaPath();
28
29     /**
30      * Load the information contained on the normalized node.
31      *
32      * @param dto normalizedNode
33      */
34     void loadConfiguration(@Nonnull NormalizedNode<?, ?> dto);
35 }