blob: d11445d6bab0ab01ebc19b5e6795965c3d1e9a43 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
== Copyright (c) 2023 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 Application web services.
-->
<scr:component
xmlns:scr = "http://www.osgi.org/xmlns/scr/v1.1.0"
activate = "start">
<implementation
class = "org.eclipse.osee.define.rest.DefineApplication" />
<service>
<provide
interface = "javax.ws.rs.core.Application" />
</service>
<reference
bind = "setOrcsApi"
cardinality = "1..1"
interface = "org.eclipse.osee.orcs.OrcsApi"
name = "OrcsApi"
policy = "static"/>
<reference
bind = "setActivityLog"
cardinality = "1..1"
interface = "org.eclipse.osee.activity.api.ActivityLog"
name = "ActivityLog"
policy = "static"/>
<reference
bind = "setDefineApi"
cardinality = "1..1"
interface = "org.eclipse.osee.define.operations.api.DefineOperations"
name = "DefineApi"
policy = "static"/>
<reference
bind = "setJdbcService"
cardinality = "1..1"
interface = "org.eclipse.osee.jdbc.JdbcService"
name = "JdbcService"
policy = "static"/>
<property name="osee.trace.myII.C_Test_Scripts.primary.regexs" type="String">[^_&quot;]CSID\s*\{\d+\s+(.+)\}
[^_&quot;]CSID\s*(\{[^\{\}]+\})
[^_&quot;]SubDD\s*\{\d+\s*(.+)\}
[^_&quot;](SRS\[.+\])
</property>
<property name="osee.trace.myII.C_Test_Scripts.secondary.regexs" type="String">.+
.+
.+
.+
</property>
<property name="osee.trace.myII.Ada_Code.primary.regexs" type="String">\^(?:CSID|SubDD)\s*\[?([^\]]+)\]?
\^(SRS)\s*(\[.+\])
</property>
<property name="osee.trace.myII.Ada_Code.secondary.regexs" type="String">(SRS)?\d*\s*([^;]+)
.+
</property>
</scr:component>