1 <?xml version="1.0" encoding="UTF-8"?>
 
   3   ============LICENSE_START=======================================================
 
   5   ================================================================================
 
   6   Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 
   7   ================================================================================
 
   8   Copyright (C) 2017 Amdocs
 
   9   =============================================================================
 
  10   Licensed under the Apache License, Version 2.0 (the "License");
 
  11   you may not use this file except in compliance with the License.
 
  12   You may obtain a copy of the License at
 
  14        http://www.apache.org/licenses/LICENSE-2.0
 
  16   Unless required by applicable law or agreed to in writing, software
 
  17   distributed under the License is distributed on an "AS IS" BASIS,
 
  18   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  19   See the License for the specific language governing permissions and
 
  20   limitations under the License.
 
  22   ECOMP is a trademark and service mark of AT&T Intellectual Property.
 
  23   ============LICENSE_END=========================================================
 
  27     Starter Blueprint Camel Definition appc-command-executor-blueprint
 
  29 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
 
  30            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 
  31            xsi:schemaLocation="http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd">
 
  33     <reference id="dbLibServiceRef" availability="mandatory" activation="eager" interface="org.onap.ccsdk.sli.core.dblib.DbLibService" />
 
  35     <bean id="licenseDataServiceBean" class="org.onap.appc.licmgr.impl.LicenseDataAccessServiceImpl" scope="singleton" activation="eager">
 
  36         <property name="dbLibService" ref="dbLibServiceRef" />
 
  37         <property name="schema" value="sdnctl" />
 
  40     <bean id="licenseServiceBean" class="org.onap.appc.licmgr.impl.LicenseManagerImpl" scope="singleton" activation="lazy">
 
  41         <property name="DAService" ref="licenseDataServiceBean"/>
 
  43     <service id="licenseService" interface="org.onap.appc.licmgr.LicenseManager" ref="licenseServiceBean"/>