Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRob Stryker2018-01-25 18:11:24 +0000
committerRob Stryker2018-01-25 18:11:24 +0000
commit932502c1094bdefdc463690b2292589b72f0cae4 (patch)
treeb958d9097b645946999f9b1f0e3eb33ad94d84b3 /core/bundles/org.eclipse.jst.ws.consumption.ui/schema/webServiceOSGISupport.exsd
parenta3b4f57ca16c1d8b05dd04e23e374ca080d2f2f1 (diff)
downloadwebtools.webservices-932502c1094bdefdc463690b2292589b72f0cae4.tar.gz
webtools.webservices-932502c1094bdefdc463690b2292589b72f0cae4.tar.xz
webtools.webservices-932502c1094bdefdc463690b2292589b72f0cae4.zip
Move all files into core subdirectory
Signed-off-by: Rob Stryker <rob@oxbeef.net>
Diffstat (limited to 'core/bundles/org.eclipse.jst.ws.consumption.ui/schema/webServiceOSGISupport.exsd')
-rw-r--r--core/bundles/org.eclipse.jst.ws.consumption.ui/schema/webServiceOSGISupport.exsd108
1 files changed, 108 insertions, 0 deletions
diff --git a/core/bundles/org.eclipse.jst.ws.consumption.ui/schema/webServiceOSGISupport.exsd b/core/bundles/org.eclipse.jst.ws.consumption.ui/schema/webServiceOSGISupport.exsd
new file mode 100644
index 000000000..d1b46c1a1
--- /dev/null
+++ b/core/bundles/org.eclipse.jst.ws.consumption.ui/schema/webServiceOSGISupport.exsd
@@ -0,0 +1,108 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!-- Schema file written by PDE -->
+<schema targetNamespace="org.eclipse.jst.ws.consumption.ui" xmlns="http://www.w3.org/2001/XMLSchema">
+<annotation>
+ <appInfo>
+ <meta.schema plugin="org.eclipse.jst.ws.consumption.ui" id="webServiceOSGISupport" name="Web Service OSGI Support"/>
+ </appInfo>
+ <documentation>
+ Implementing consumers may consume this extension point, in order to allow OSGi bundles and applications to be supported by the Web Services Wizard.
+
+Implementing this extension point and its corresponding Interface will alter the Web Service wizard language from EAR to OSGi when an OSGi supported project is detected. Likewise, the value of the OSGi App field will be stored in ServiceOsgiAppProjectName, rather than in ServiceEarProjectName.
+
+From here, consumers should use this ServiceOsgiAppProjectName value to create the composite OSGi application and associate the OSGi bundle, as needed. This is not presently handled by the existing Web service commands.
+ </documentation>
+ </annotation>
+
+ <element name="extension">
+ <annotation>
+ <appInfo>
+ <meta.element />
+ </appInfo>
+ </annotation>
+ <complexType>
+ <sequence>
+ <element ref="webServiceOSGISupport"/>
+ </sequence>
+ <attribute name="point" type="string" use="required">
+ <annotation>
+ <documentation>
+
+ </documentation>
+ </annotation>
+ </attribute>
+ <attribute name="id" type="string">
+ <annotation>
+ <documentation>
+
+ </documentation>
+ </annotation>
+ </attribute>
+ <attribute name="name" type="string">
+ <annotation>
+ <documentation>
+
+ </documentation>
+ <appInfo>
+ <meta.attribute translatable="true"/>
+ </appInfo>
+ </annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+ <element name="webServiceOSGISupport">
+ <complexType>
+ <attribute name="applicableTemplates" type="string" use="required">
+ <annotation>
+ <documentation>
+
+ </documentation>
+ </annotation>
+ </attribute>
+ <attribute name="class" type="string" use="required">
+ <annotation>
+ <documentation>
+
+ </documentation>
+ <appInfo>
+ <meta.attribute kind="java" basedOn=":org.eclipse.jst.ws.internal.consumption.ui.common.IWebServiceOSGISupportExtension"/>
+ </appInfo>
+ </annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+ <annotation>
+ <appInfo>
+ <meta.section type="since"/>
+ </appInfo>
+ <documentation>
+ &lt;b&gt;This extension point is part of an interim API that might undergo further development and could change significantly before reaching stability. It is being made available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.&lt;/b&gt;
+ </documentation>
+ </annotation>
+
+ <annotation>
+ <appInfo>
+ <meta.section type="examples"/>
+ </appInfo>
+ <documentation>
+ &lt;pre&gt;
+ &lt;extension
+ point=&quot;org.eclipse.jst.ws.consumption.ui.webServiceOSGISupport&quot;&gt;
+
+ &lt;webServiceOSGISupport
+ applicableTemplates=&quot;template.osgi.app template.osgi.bundle template.osgi.fragment&quot;
+ class=&quot;(Java class implementing interface IWebServiceOSGISupportExtension)&quot; &gt;
+
+ &lt;/webServiceOSGISupport&gt;
+
+ &lt;/extension&gt;
+&lt;/pre&gt;
+ </documentation>
+ </annotation>
+
+
+
+
+</schema>

Back to the top