Remove yangtools APIs
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / yangtools / binding / data / codec / gen / impl / DataObjectSerializerGenerator.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.binding.data.codec.gen.impl;
9
10 import org.opendaylight.mdsal.binding.generator.util.BindingRuntimeContext;
11 import org.opendaylight.yangtools.yang.binding.DataObjectSerializerImplementation;
12
13 /**
14  * Public interface exposed from generator implementation.
15  *
16  * @deprecated Use {@link org.opendaylight.mdsal.binding.dom.codec.gen.impl.DataObjectSerializerGenerator} instead.
17  */
18 @Deprecated
19 public interface DataObjectSerializerGenerator {
20     /**
21      * Get a serializer for a particular type.
22      *
23      * @param type Type class
24      * @return Serializer instance.
25      */
26     DataObjectSerializerImplementation getSerializer(Class<?> type);
27
28     /**
29      * Notify the generator that the runtime context has been updated.
30      * @param runtime New runtime context
31      */
32     void onBindingRuntimeContextUpdated(BindingRuntimeContext runtime);
33 }