IDEMPIERE-519 Swing client connection discovery broken
This commit is contained in:
parent
36b39ddf9f
commit
a9803ec890
|
@ -86,5 +86,5 @@ Import-Package: javax.net.ssl,
|
||||||
org.restlet.security,
|
org.restlet.security,
|
||||||
org.restlet.service,
|
org.restlet.service,
|
||||||
org.restlet.util
|
org.restlet.util
|
||||||
Service-Component: OSGI-INF/defaultpaymentformfactory.xml
|
Service-Component: OSGI-INF/defaultpaymentformfactory.xml, OSGI-INF/serverinterface.xml, OSGI-INF/statusinterface.xml
|
||||||
Bundle-ActivationPolicy: lazy
|
Bundle-ActivationPolicy: lazy
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" name="org.adempiere.ui.swing.interfaces.server">
|
||||||
|
<implementation class="org.adempiere.client.ServerInterface"/>
|
||||||
|
<service>
|
||||||
|
<provide interface="org.compiere.interfaces.Server"/>
|
||||||
|
</service>
|
||||||
|
<property name="service.ranking" type="Integer" value="1"/>
|
||||||
|
</scr:component>
|
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" name="org.adempiere.ui.swing.interfaces.status">
|
||||||
|
<implementation class="org.adempiere.client.StatusInterface"/>
|
||||||
|
<service>
|
||||||
|
<provide interface="org.compiere.interfaces.Status"/>
|
||||||
|
</service>
|
||||||
|
<property name="service.ranking" type="Integer" value="1"/>
|
||||||
|
</scr:component>
|
Loading…
Reference in New Issue