Fix for features - added missing dependency
[yangtools.git] / yang / yang-binding / src / main / java / org / opendaylight / yangtools / yang / binding / DataObjectSerializerImplementation.java
1 /*
2  * Copyright (c) 2014 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.binding;
9
10 /**
11  * SPI-level contract for implementations of {@link DataObjectSerializer}.
12  * The contract is kept between implementation of {@link DataObjectSerializerRegistry},
13  * which maintains the lookup context required for recursive serialization.
14  *
15  * FIXME: this interface needs to be moved into .spi, but due to classpath funkyness
16  *        of OSGi, that change has to be carefully orchestrated to ensure proper imports
17  *        exist in all generated pacakges. One avenue how to achieve that is to move
18  *        {@link YangModuleInfo} and modify code generator to add a static field
19  *        to all generated classes which will point to the per-model YangModuleInfo
20  *        (currently all users of it have to walk the package hierarchy, so that
21  *        is an improvement in and of itself).
22  *
23  */
24 public interface DataObjectSerializerImplementation {
25
26     /**
27      *
28      * Writes stream events for supplied data object to provided stream.
29      *
30      * DataObjectSerializerRegistry may be used to lookup serializers
31      * for other generated classes  in order to support writing
32      * their events.
33      *
34      */
35     void serialize(DataObjectSerializerRegistry reg,DataObject obj, BindingStreamEventWriter stream);
36
37 }