Split up TypeProviderImpl
[mdsal.git] / binding / mdsal-binding-generator-impl / src / main / java / org / opendaylight / mdsal / binding / yang / types / TypeProviderImpl.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.mdsal.binding.yang.types;
9
10 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
11
12 /**
13  * {@link AbstractTypeProvider} which generates full metadata, suitable for codegen purposes. For runtime purposes,
14  * considering using {@link RuntimeTypeProvider}.
15  *
16  * @deprecated Use {@link CodegenTypeProvider} instead.
17  */
18 @Deprecated
19 public final class TypeProviderImpl extends CodegenTypeProvider {
20     /**
21      * Creates new instance of class <code>TypeProviderImpl</code>.
22      *
23      * @param schemaContext contains the schema data read from YANG files
24      * @throws IllegalArgumentException if <code>schemaContext</code> is null.
25      */
26     public TypeProviderImpl(final SchemaContext schemaContext) {
27         super(schemaContext);
28     }
29 }