X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=vnfapi%2Fprovider%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fsdnc%2Fvnfapi%2FVNFSDNSvcLogicServiceClient.java;h=a9f051a274aab212fdf8f46a650c139107b1e662;hb=dd3f74074787dfd14e8aec0b48883b780dd8ccba;hp=9f8696fe822589e866b4961cdfd25c1561585291;hpb=93a3119b6922b16ad7b3f41e16427c99b5eac371;p=sdnc%2Fnorthbound.git diff --git a/vnfapi/provider/src/main/java/org/onap/sdnc/vnfapi/VNFSDNSvcLogicServiceClient.java b/vnfapi/provider/src/main/java/org/onap/sdnc/vnfapi/VNFSDNSvcLogicServiceClient.java index 9f8696fe..a9f051a2 100644 --- a/vnfapi/provider/src/main/java/org/onap/sdnc/vnfapi/VNFSDNSvcLogicServiceClient.java +++ b/vnfapi/provider/src/main/java/org/onap/sdnc/vnfapi/VNFSDNSvcLogicServiceClient.java @@ -8,9 +8,9 @@ * 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. @@ -43,24 +43,12 @@ public class VNFSDNSvcLogicServiceClient { private static final Logger LOG = LoggerFactory .getLogger(VNFSDNSvcLogicServiceClient.class); - private SvcLogicService svcLogic = null; + private final SvcLogicService svcLogic; - public VNFSDNSvcLogicServiceClient() + public VNFSDNSvcLogicServiceClient(final SvcLogicService svcLogicService) { - BundleContext bctx = FrameworkUtil.getBundle(SvcLogicService.class).getBundleContext(); + this.svcLogic = svcLogicService; - // Get SvcLogicService reference - ServiceReference sref = bctx.getServiceReference(SvcLogicService.NAME); - if (sref != null) - { - svcLogic = (SvcLogicService) bctx.getService(sref); - - } - else - { - LOG.warn("Cannot find service reference for "+SvcLogicService.NAME); - - } } public boolean hasGraph(String module, String rpc, String version, String mode) throws SvcLogicException