a300cc07d41f88b83daa6d3dcbdc386ba353132d
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / transform / ToNormalizedNodeParser.java
1 /*
2  * Copyright (c) 2013 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 package org.opendaylight.yangtools.yang.data.impl.schema.transform;
9
10 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
11
12 /**
13  *
14  * Generic parser for normalized nodes. NormalizedNodes can be parsed
15  * e.g. from Dom APIs.
16  *
17  * @param <E>
18  *            type of element to be parsed into NormalizedNode
19  * @param <N>
20  *            type of NormalizedNode to be the result of parsing
21  * @param <S>
22  *            schema belonging to the type N of NormalizedNode
23  */
24 public interface ToNormalizedNodeParser<E, N extends NormalizedNode<?, ?>, S> {
25
26     /**
27      *
28      * Parse a list of E elements as a NormalizedNode of type N. If the parsing
29      * process expects only one E element as input e.g. container node, the
30      * input element will be wrapped in a list.
31      *
32      * @param xmlDom
33      * @param schema
34      * @return NormalizedNode as a result of parsing list of E elements with schema S
35      */
36     N parse(Iterable<E> xmlDom, S schema);
37 }