initial public commit
This commit is contained in:
@ -0,0 +1,56 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
~~~~~~licensing~~~~~~
|
||||
bundle-manager
|
||||
==========
|
||||
Copyright (C) 2020 - 2021 EmDev LLC
|
||||
==========
|
||||
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.
|
||||
~~~~~~/licensing~~~~~~
|
||||
-->
|
||||
|
||||
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="
|
||||
http://www.osgi.org/xmlns/blueprint/v1.0.0 https://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd
|
||||
">
|
||||
|
||||
<bean id="bundleManager" class="ru.entaxy.esb.system.management.bundle.manager.BundleManagerImpl">
|
||||
<property name="blueprintGenerator" ref="blueprintGenerator"/>
|
||||
<property name="bundleController" ref="bundleController"/>
|
||||
<property name="bundleRepository" ref="bundleRepository"/>
|
||||
<property name="bundleService" ref="bundleService"/>
|
||||
</bean>
|
||||
|
||||
<service ref="bundleManager" interface="ru.entaxy.esb.system.management.bundle.manager.BundleManager"/>
|
||||
|
||||
<reference id="blueprintGenerator"
|
||||
interface="ru.entaxy.esb.system.management.blueprint.generator.BlueprintGenerator"
|
||||
timeout="30000"
|
||||
availability="mandatory"/>
|
||||
|
||||
<reference id="bundleController"
|
||||
interface="ru.entaxy.esb.system.deployer.cellar.deployer.BundleController"
|
||||
timeout="30000"
|
||||
availability="mandatory"/>
|
||||
|
||||
<reference id="bundleRepository"
|
||||
interface="ru.entaxy.esb.system.deployer.api.BundleRepository"
|
||||
timeout="30000"
|
||||
availability="mandatory"/>
|
||||
|
||||
<reference id="bundleService"
|
||||
interface="ru.entaxy.esb.system.management.bundle.jpa.BundleService"
|
||||
timeout="30000"
|
||||
availability="mandatory"/>
|
||||
</blueprint>
|
Reference in New Issue
Block a user