e102ef82736bbeaa4bbdf0a17c7e2608fb7a2f18
[hc2vpp.git] /
1 /*
2  * Copyright (c) 2016 Cisco and/or its affiliates.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package io.fd.hc2vpp.common.test.read;
18
19 import io.fd.honeycomb.translate.spi.read.InitializingReaderCustomizer;
20 import org.opendaylight.yangtools.concepts.Builder;
21 import org.opendaylight.yangtools.yang.binding.DataObject;
22
23 /**
24  * Generic test for classes implementing {@link InitializingReaderCustomizer} interface.
25  *
26  * @param <D> Specific DataObject derived type (Identifiable), that is handled by this customizer
27  * @param <B> Specific Builder for handled type (D)
28  */
29 public abstract class InitializingReaderCustomizerTest<D extends DataObject, B extends Builder<D>> extends
30     ReaderCustomizerTest<D, B> {
31
32     protected InitializingReaderCustomizerTest(
33         final Class<D> dataObjectClass,
34         final Class<? extends Builder<? extends DataObject>> parentBuilderClass) {
35         super(dataObjectClass, parentBuilderClass);
36     }
37
38     @Override
39     protected InitializingReaderCustomizer<D, B> getCustomizer() {
40         return InitializingReaderCustomizer.class.cast(super.getCustomizer());
41     }
42 }