Do not require DataObject for streaming
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / mdsal / binding / dom / codec / impl / DataContainerSerializerRegistry.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.mdsal.binding.dom.codec.impl;
9
10 import org.opendaylight.yangtools.yang.binding.DataContainer;
11
12 /**
13  * SPI-level contract for registry of {@link DataContainerSerializer}. The contract is kept between implementation of
14  * {@link DataContainerSerializer}, Registry provides lookup for serializers to support recursive serialization of
15  * nested {@link DataContainer}s.
16  */
17 // FIXME: this interface should not be necessary
18 public interface DataContainerSerializerRegistry {
19
20     DataContainerSerializer getSerializer(Class<? extends DataContainer> binding);
21
22 }