HONEYCOMB-154: update revison of models that changed since 16.09
[honeycomb.git] / lisp / lisp2vpp / src / main / java / io / fd / honeycomb / lisp / translate / write / factory / MapResolversWriterFactory.java
1 /*
2  * Copyright (c) 2015 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.honeycomb.lisp.translate.write.factory;
18
19
20 import io.fd.honeycomb.lisp.translate.write.MapResolverCustomizer;
21 import io.fd.honeycomb.translate.impl.write.GenericListWriter;
22 import io.fd.honeycomb.translate.write.WriterFactory;
23 import io.fd.honeycomb.translate.write.registry.ModifiableWriterRegistryBuilder;
24 import javax.annotation.Nonnull;
25 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.lisp.rev161214.Lisp;
26 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.lisp.rev161214.lisp.feature.data.grouping.LispFeatureData;
27 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.lisp.rev161214.map.resolvers.grouping.MapResolvers;
28 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.lisp.rev161214.map.resolvers.grouping.map.resolvers.MapResolver;
29 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
30 import io.fd.vpp.jvpp.core.future.FutureJVppCore;
31
32
33 /**
34  * Factory responsible for producing writers for {@code MapResolvers}
35  */
36 final class MapResolversWriterFactory extends AbstractLispWriterFactoryBase implements WriterFactory {
37
38     private MapResolversWriterFactory(final InstanceIdentifier<Lisp> lispInstanceIdentifier,
39                                       final FutureJVppCore vppApi) {
40         super(lispInstanceIdentifier, vppApi, null);
41     }
42
43     public static MapResolversWriterFactory newInstance(
44             @Nonnull final InstanceIdentifier<Lisp> lispInstanceIdentifier,
45             @Nonnull final FutureJVppCore vppApi) {
46         return new MapResolversWriterFactory(lispInstanceIdentifier, vppApi);
47     }
48
49     @Override
50     public void init(@Nonnull final ModifiableWriterRegistryBuilder registry) {
51         registry.add(new GenericListWriter<>(
52                 lispInstanceIdentifier.child(LispFeatureData.class).child(MapResolvers.class).child(MapResolver.class),
53                 new MapResolverCustomizer(vppApi)));
54     }
55 }