summaryrefslogtreecommitdiffstats
path: root/java/sca/modules/implementation-web-runtime/src/main/resources/META-INF/sca.tld
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-02-18 09:28:04 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-02-18 09:28:04 +0000
commit19a822121b3cf78951f50fb1036b58ee51a72b97 (patch)
tree4b48a697d97cd573c2ce1b46fe33b1d76acb502a /java/sca/modules/implementation-web-runtime/src/main/resources/META-INF/sca.tld
parent4b272bf29d1305f2aa939e6e8a5597e6f85e88c3 (diff)
Start to bringup the implementation-web-runtime module (copied frm 1.x)
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@745450 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--java/sca/modules/implementation-web-runtime/src/main/resources/META-INF/sca.tld51
1 files changed, 51 insertions, 0 deletions
diff --git a/java/sca/modules/implementation-web-runtime/src/main/resources/META-INF/sca.tld b/java/sca/modules/implementation-web-runtime/src/main/resources/META-INF/sca.tld
new file mode 100644
index 0000000000..44ce1b1d8a
--- /dev/null
+++ b/java/sca/modules/implementation-web-runtime/src/main/resources/META-INF/sca.tld
@@ -0,0 +1,51 @@
+<?xml version = '1.0' encoding = 'ISO-8859-1'?>
+<!--
+(c) Copyright BEA Systems, Inc., Cape Clear Software, International Business Machines Corp, Interface21, IONA
+Technologies, Oracle, Primeton Technologies, Progress Software, Red Hat, Rogue Wave Software, SAP AG., Siemens
+AG., Software AG., Sun Microsystems, Inc., Sybase Inc., TIBCO Software Inc., 2005, 2008. All rights reserved.
+
+see http://www.osoa.org/display/Main/Service+Component+Architecture+Specifications
+ -->
+
+
+
+<taglib version="2.1" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_2_1.xsd">
+
+ <tlib-version>1.0</tlib-version>
+ <short-name>SCA-JSP</short-name>
+ <uri>http://www.osog.org/sca/sca.tld</uri>
+ <description>A tag library for integrating sca components with jsp</description>
+
+ <tag>
+
+ <name>reference</name>
+
+ <tag-class>org.apache.tuscany.sca.implementation.web.taglib.ReferenceTag</tag-class>
+ <tei-class>org.apache.tuscany.sca.implementation.web.taglib.ReferenceTEI</tei-class>
+
+ <attribute>
+ <name>name</name>
+ <required>true</required>
+ <rtexprvalue>false</rtexprvalue>
+ <type>java.lang.String</type>
+ </attribute>
+
+ <attribute>
+ <name>type</name>
+ <required>true</required>
+ <rtexprvalue>false</rtexprvalue>
+ <type>java.lang.String</type>
+ </attribute>
+
+ <attribute>
+ <name>scope</name>
+ <required>false</required>
+ <rtexprvalue>false</rtexprvalue>
+ <type>java.lang.Integer</type>
+ </attribute>
+
+ <body-content>empty</body-content>
+
+ </tag>
+
+</taglib>