HoneyNode Java 11 support for 221 devices
[transportpce.git] / tests / honeynode / 2.1 / honeynode-plugin-impl / src / main / java / io / fd / honeycomb / transportpce / device / write / DeviceWriterFactory.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 com.google.inject.Inject;
19 import com.google.inject.name.Named;
20 import io.fd.honeycomb.translate.util.write.BindingBrokerWriter;
21 import io.fd.honeycomb.translate.write.WriterFactory;
22 import io.fd.honeycomb.translate.write.registry.ModifiableWriterRegistryBuilder;
23 import javax.annotation.Nonnull;
24 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
25 import org.opendaylight.controller.md.sal.binding.api.DataTreeIdentifier;
26 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
27 import org.opendaylight.yang.gen.v1.http.org.openroadm.device.rev170206.org.openroadm.device.container.OrgOpenroadmDevice;
28 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
29
30 public class DeviceWriterFactory implements WriterFactory {
31     private static final InstanceIdentifier<OrgOpenroadmDevice> DEVICE_CONTAINER_ID = InstanceIdentifier
32             .create(OrgOpenroadmDevice.class);
33
34
35     @Inject
36     @Named("device-databroker")
37     private DataBroker deviceDataBroker;
38
39     @Override
40     public void init(@Nonnull final ModifiableWriterRegistryBuilder registry) {
41         registry.wildcardedSubtreeAdd(new BindingBrokerWriter<>(DEVICE_CONTAINER_ID, deviceDataBroker));
42         deviceDataBroker.registerDataTreeChangeListener(new DataTreeIdentifier<>(LogicalDatastoreType.CONFIGURATION,
43                 DEVICE_CONTAINER_ID), new DeviceChangeListener(deviceDataBroker));
44     }
45 }