blob: 2b11618db8ef970bdb06cacb9549fb6e3694a4e8 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
== Copyright (c) 2022 Boeing
==
== This program and the accompanying materials are made
== available under the terms of the Eclipse Public License 2.0
== which is available at https://www.eclipse.org/legal/epl-2.0/
==
== SPDX-License-Identifier: EPL-2.0
==
== Contributors:
== Boeing - initial API and implementation
-->
<!--
== Defines the OSGI service for the Define Operations
-->
<scr:component
xmlns:scr = "http://www.osgi.org/xmlns/scr/v1.1.0"
activate = "start">
<implementation
class = "org.eclipse.osee.define.operations.DefineOperationsImpl" />
<service>
<provide
interface = "org.eclipse.osee.define.api.DefineOperations" />
</service>
<reference
bind = "setOrcsApi"
cardinality = "1..1"
interface = "org.eclipse.osee.orcs.OrcsApi"
name = "OrcsApi"
policy = "static"/>
<reference
bind = "setAtsApi"
cardinality = "1..1"
interface = "org.eclipse.osee.ats.api.AtsApi"
name = "AtsApi"
policy = "static"/>
<reference
bind = "setLogger"
cardinality = "1..1"
interface = "org.eclipse.osee.logger.Log"
name = "Log"
policy = "static"/>
<reference
bind = "setActivityLog"
cardinality = "1..1"
interface = "org.eclipse.osee.activity.api.ActivityLog"
name = "ActivityLog"
policy = "static"/>
<reference
bind = "setEventAdmin"
cardinality = "1..1"
interface = "org.osgi.service.event.EventAdmin"
name = "EventAdmin"
policy = "static"/>
</scr:component>