ac52f3ba31a762d2613e987dc3ec8502da3e3d9f
[transportpce.git] / tests / honeynode / 1.2.1 / honeynode-plugin-impl / src / main / java / io / fd / honeycomb / transportpce / device / write / OcTerminalDeviceWriterFactory.java
1 /*
2  * Copyright (c) 2018 Orange 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 package io.fd.honeycomb.transportpce.device.write;
17
18 import javax.annotation.Nonnull;
19
20 import org.opendaylight.mdsal.binding.api.DataBroker;
21 import org.opendaylight.mdsal.binding.api.DataTreeIdentifier;
22 import org.opendaylight.mdsal.common.api.LogicalDatastoreType;
23 import org.opendaylight.yang.gen.v1.http.openconfig.net.yang.terminal.device.rev170708.terminal.device.top.TerminalDevice;
24 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
25
26 import com.google.inject.Inject;
27 import com.google.inject.name.Named;
28
29 import io.fd.honeycomb.translate.util.write.BindingBrokerWriter;
30 import io.fd.honeycomb.translate.write.WriterFactory;
31 import io.fd.honeycomb.translate.write.registry.ModifiableWriterRegistryBuilder;
32
33 public class OcTerminalDeviceWriterFactory implements WriterFactory {
34     private static final InstanceIdentifier<TerminalDevice> TERMINAL_DEVICE_CONTAINER_ID = InstanceIdentifier
35             .create(TerminalDevice.class);
36
37
38     @Inject
39     @Named("device-databroker")
40     private DataBroker deviceDataBroker;
41
42     @Override
43     public void init(@Nonnull final ModifiableWriterRegistryBuilder registry) {
44         registry.wildcardedSubtreeAdd(new BindingBrokerWriter<>(TERMINAL_DEVICE_CONTAINER_ID, deviceDataBroker));
45         deviceDataBroker.registerDataTreeChangeListener(DataTreeIdentifier.create(LogicalDatastoreType.CONFIGURATION,
46                 TERMINAL_DEVICE_CONTAINER_ID), new TerminalDeviceChangeListener(deviceDataBroker));
47     }
48 }