X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=tests%2Fhoneynode%2Fhoneynode-plugin-impl%2Fsrc%2Fmain%2Fjava%2Fio%2Ffd%2Fhoneycomb%2Ftransportpce%2Fdevice%2Fconfiguration%2FPmConfiguration.java;fp=tests%2Fhoneynode%2Fhoneynode-plugin-impl%2Fsrc%2Fmain%2Fjava%2Fio%2Ffd%2Fhoneycomb%2Ftransportpce%2Fdevice%2Fconfiguration%2FPmConfiguration.java;h=0000000000000000000000000000000000000000;hb=7474055983b078ca899ccd3f1c56e5627bf77e52;hp=4fd3ffecabb521a7d7d8dbee91fc1ca426a1ab55;hpb=d8d24165bda93e0083b0b4da2cf3edc1488049e2;p=transportpce.git diff --git a/tests/honeynode/honeynode-plugin-impl/src/main/java/io/fd/honeycomb/transportpce/device/configuration/PmConfiguration.java b/tests/honeynode/honeynode-plugin-impl/src/main/java/io/fd/honeycomb/transportpce/device/configuration/PmConfiguration.java deleted file mode 100644 index 4fd3ffeca..000000000 --- a/tests/honeynode/honeynode-plugin-impl/src/main/java/io/fd/honeycomb/transportpce/device/configuration/PmConfiguration.java +++ /dev/null @@ -1,69 +0,0 @@ -/* - * Copyright (c) 2016 Cisco and/or its affiliates. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package io.fd.honeycomb.transportpce.device.configuration; - -import io.fd.honeycomb.transportpce.device.tools.DefaultPmListFactory; -import io.fd.honeycomb.transportpce.test.common.DataStoreContext; -import io.fd.honeycomb.transportpce.test.common.DataStoreContextImpl; - -import java.io.File; - -import org.opendaylight.yang.gen.v1.http.org.openroadm.pm.rev161014.CurrentPmlist; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import net.jmob.guice.conf.core.BindConfig; -import net.jmob.guice.conf.core.InjectConfig; -import net.jmob.guice.conf.core.Syntax; - -/** - * Class containing static configuration for honeynode-plugin module
- *

- * Further documentation for the configuration injection can be found at: - * https://github.com/yyvess/gconf - */ -@BindConfig(value = "honeycomb", syntax = Syntax.JSON) -public final class PmConfiguration { - private static final Logger LOG = LoggerFactory.getLogger(PmConfiguration.class); - - private DataStoreContext dataStoreContextUtil; - private DefaultPmListFactory defaultPmListFactory; - private ClassLoader classLoader; - - @InjectConfig("netconf-initial-config-xml") - public String PM_DATA_SAMPLE_OPER_XML; - - public PmConfiguration() { - classLoader = Thread.currentThread().getContextClassLoader(); - dataStoreContextUtil = new DataStoreContextImpl(); - defaultPmListFactory = new DefaultPmListFactory(); - } - - public String getNetconfInitialPmXml() { - return PM_DATA_SAMPLE_OPER_XML; - } - - public CurrentPmlist getDataPm() { - CurrentPmlist result = null; - File pm_list_data = new File(classLoader.getResource(PM_DATA_SAMPLE_OPER_XML).getFile()); - result = defaultPmListFactory.createDefaultPmList(dataStoreContextUtil,pm_list_data); - if (result != null) { - LOG.info("result pm list size : {}", result.getCurrentPm().size()); - } - return result; - } -}