Fix checkstyle a bit
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / mdsal / binding / dom / codec / api / BindingCodecTreeFactory.java
1 /*
2  * Copyright (c) 2015 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.mdsal.binding.dom.codec.api;
9
10 import com.google.common.annotations.Beta;
11 import org.opendaylight.mdsal.binding.generator.util.BindingRuntimeContext;
12 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
13
14 public interface BindingCodecTreeFactory {
15     /**
16      * Creates Binding Codec Tree for specified Binding runtime context.
17      *
18      * @param context
19      *            Binding Runtime Context for which Binding codecs should be
20      *            instantiated.
21      * @return Binding Codec Tree for specified Binding runtime context.
22      */
23     BindingCodecTree create(BindingRuntimeContext context);
24
25     /**
26      * Creates Binding Codec Tree for specified Binding runtime context.
27      *
28      * @param context
29      *            Binding Runtime Context for which Binding codecs should be
30      *            instantiated.
31      * @param bindingClasses
32      *            Binding Runtime Context will be constructed using bindings
33      *            which contains specified classes, in order to support
34      *            deserialization in multi-classloader environment.
35      * @return Binding Codec Tree for specified Binding runtime context.
36      */
37     @Beta
38     BindingCodecTree create(SchemaContext context, Class<?>... bindingClasses);
39 }