You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by ks...@apache.org on 2013/03/04 22:10:10 UTC

svn commit: r1452528 [4/6] - in /juddi/trunk/juddi-examples: ./ .settings/ target/ target/maven-shared-archive-resources/ target/maven-shared-archive-resources/META-INF/ uddi-annotations/ uddi-annotations/.settings/ uddi-annotations/src/ uddi-annotatio...

Added: juddi/trunk/juddi-examples/uddi-annotations/target/uddi-annotations-3.1.5-SNAPSHOT/index.jsp
URL: http://svn.apache.org/viewvc/juddi/trunk/juddi-examples/uddi-annotations/target/uddi-annotations-3.1.5-SNAPSHOT/index.jsp?rev=1452528&view=auto
==============================================================================
--- juddi/trunk/juddi-examples/uddi-annotations/target/uddi-annotations-3.1.5-SNAPSHOT/index.jsp (added)
+++ juddi/trunk/juddi-examples/uddi-annotations/target/uddi-annotations-3.1.5-SNAPSHOT/index.jsp Mon Mar  4 21:10:04 2013
@@ -0,0 +1,113 @@
+<%@ page session="false" %>
+<%@ page import="java.util.List,
+                 org.apache.juddi.config.Install,
+                 javax.xml.bind.JAXBException,
+                 org.uddi.v3_service.DispositionReportFaultMessage,
+                 org.apache.juddi.config.AppConfig,
+                 org.apache.juddi.config.Property,
+                 org.uddi.api_v3.BusinessEntity,
+                 org.uddi.api_v3.Name,
+                 org.uddi.api_v3.Description,
+                 java.io.IOException,
+                 org.apache.juddi.config.Release"
+%>
+
+<!-- index.jsp -->
+<html>
+<head>
+<title>Apache jUDDI Registry</title>
+<link rel="stylesheet" href="juddi.css" />
+</head>
+<body>
+<div class="header" align="right"><a href="http://ws.apache.org/juddi/" target="_top">jUDDI@Apache</a></div>
+<h1>Apache jUDDI version <%= Release.getRegistryVersion() %></h1>
+
+
+<h3><em>Welcome</em> to Apache jUDDI!</h3>
+<div class="install">
+<h4>jUDDI Documentation</h4>
+    <div class="content">
+	<table><tr>
+	<td>
+	<ul>
+	    <li><a href="/pluto/portal/jUDDI">jUDDI Portal</a></li>
+	    <li><a href="services">View</a> service listing</li>
+	    <li><a href="http://ws.apache.org/juddi/">Visit</a> the Apache-jUDDI Home Page</li>
+	    <li><a href="http://issues.apache.org/jira/browse/JUDDI">Report</a> a bug</li>
+	    <li><a href="http://ws.apache.org/juddi/participate.html">Participate! We love you..</a></li>
+	    <li><a href="http://ws.apache.org/juddi/library.html">UDDI library</a></li>
+	</ul>
+	</td>
+	<td>
+	<ul>
+	    <li><a href="http://ws.apache.org/juddi/docs/3.0/userguide/pdf/userguide.pdf">jUDDI User Guide</a></li>
+	    <li><a href="http://ws.apache.org/juddi/docs/3.0/userguide/pdf/devguide.pdf">jUDDI Developer Guide</a></li>
+	    <li><a href="http://svn.apache.org/repos/asf/webservices/juddi/trunk/docs/uddi3-specification/uddi-v3.0.2-20041019.pdf">UDDI v3.0.2 Specification</a></li>
+	    <li><a href="http://wiki.apache.org/ws/jUDDI">jUDDI wiki</a> - add your own docs</li>
+	    <li><a href="http://apachejuddi.blogspot.com/">jUDDI Blog</a></li>
+	</ul>
+	</td>
+	</tr>
+	</table>
+</div>
+
+<div class="install">
+  <h4>jUDDI Installation</h4>
+    <div class="content">
+<%
+    // This will trigger the install process...
+    String rootPartition = AppConfig.getConfiguration().getString(Property.JUDDI_ROOT_PARTITION);
+	String nodeId = AppConfig.getConfiguration().getString(Property.JUDDI_NODE_ID);
+    String nodeName = "";
+    String nodeDescription = "";
+    
+    BusinessEntity be = Install.getNodeBusinessEntity(nodeId);
+    
+    if (be != null) {
+        Name n = (Name) be.getName().get(0);
+        if (n != null)
+            nodeName = n.getValue();
+
+        List descList = be.getDescription();
+        if (descList != null && descList.size() > 0) {
+            Description d = (Description) descList.get(0);
+            if (d != null)
+                nodeDescription = d.getValue();
+        }
+    }
+%>
+    <div>jUDDI has been successfully installed!</div>
+    <p />
+    <h3>Node Information</h3>
+    <table>
+        <tr>
+            <td><b>Root Partition:</b></td>
+            <td><%= rootPartition %></td>
+        </tr>
+        <tr>
+            <td><b>Node Id:</b></td>
+            <td><%= nodeId %></td>
+        </tr>
+        <tr>
+            <td><b>Name:</b></td>
+            <td><%= nodeName %></td>
+        </tr>
+        <tr>
+            <td><b>Description:</b></td>
+            <td><%= nodeDescription %></td>
+        </tr>
+    </table>
+  </div>
+</div>
+
+<hr />
+<table width="100%" border="0">
+    <tr>
+        <td height="50" align="center" valign="bottom" nowrap>
+        <div class="footer">&nbsp;</div>
+        </td>
+    </tr>
+</table>
+
+</body>
+</html>

Added: juddi/trunk/juddi-examples/uddi-annotations/target/uddi-annotations-3.1.5-SNAPSHOT/juddi.css
URL: http://svn.apache.org/viewvc/juddi/trunk/juddi-examples/uddi-annotations/target/uddi-annotations-3.1.5-SNAPSHOT/juddi.css?rev=1452528&view=auto
==============================================================================
--- juddi/trunk/juddi-examples/uddi-annotations/target/uddi-annotations-3.1.5-SNAPSHOT/juddi.css (added)
+++ juddi/trunk/juddi-examples/uddi-annotations/target/uddi-annotations-3.1.5-SNAPSHOT/juddi.css Mon Mar  4 21:10:04 2013
@@ -0,0 +1,157 @@
+body {
+  margin:      0px 10px 10px 10px;
+  font-family: "Trebuchet MS", sans-serif;
+  font-size:   10pt;
+  background:  #FFF;
+  color:       #000;
+}
+
+h1 {
+	font-family: "Trebuchet MS", sans-serif;
+	background: #00005A;
+	font-weight: normal;
+	color: White;
+	padding: 5px 10px;
+	margin: 0px -10px 10px -10px;
+}
+
+h2 {
+	font-family: "Trebuchet MS", sans-serif;
+	color: #00005A;
+}
+
+h3 {
+	font-family: "Trebuchet MS", sans-serif;
+	color: #00005A;
+}
+
+h4 {
+	font-family: "Trebuchet MS", sans-serif;
+	color: #00005A;
+}
+
+.sidebar {
+	border: 1px solid #00005A;
+	background: #EEE;
+	padding: 5px;
+} 
+
+pre.code_sample {
+  background: #EEE;
+  padding: 5px;
+}
+
+dt {
+  font-weight: bold;
+}
+
+dl {
+  margin-left: 3em;
+}
+
+td {
+  font-size:   10pt;
+}
+
+DIV.announcement dl {
+  margin-left: 0px;
+}
+
+div.LINK {
+  margin: 0px -10px;
+  padding: 2px 10px;
+  color: #000;
+  font-size: 10pt;
+}
+
+div.LINK A {
+  color: #6d0000;
+  text-decoration: none;
+}
+
+div.LINK A:hover {
+  color: #006200;
+  text-decoration: underline;
+}
+
+div.NAV {
+  background: #000;
+  margin: 0px -10px;
+  padding: 2px 10px;
+  color: #CCC;
+  font-size: 12pt;
+  font-weight: bold;
+}
+
+div.NAV A {
+  color: #CCC;
+  text-decoration: none;
+}
+
+div.NAV A:hover {
+  color: #FFF;
+}
+
+.msgs {
+	background-color: #FFD;
+	color: #005500;
+}
+
+.ednote {
+  color: #999;
+  font-style: italic;
+}
+
+.cvs_id {
+  color: #999;
+  font-size: 8pt;
+  border-top: solid 1px #999;
+}
+
+.author {
+  font-size: 14pt;
+  font-style: italic;
+}
+
+var {
+  font-style: italic;
+  color: #900;
+}
+
+div.footer { 
+  color: #666699; margin: 0px -10px; padding: 2px 10px; font-size: 8pt; font-weight: normal; 
+}
+
+div.footer a {
+  color: #666699; text-decoration: none; 
+}
+
+div.footer a:hover { 
+  color: #666699; text-decoration: underline; 
+}
+
+div.header { 
+  background: #000;
+  margin: 0px -10px;
+  padding: 2px 10px;
+  color: #CCC;
+  font-size: 8pt;
+  font-weight: bold;
+}
+
+div.header a {
+  color: #CCC;
+  text-decoration: none;
+}
+
+div.header a:hover { 
+  color: #FFF;
+}
+
+div.error {
+  color: #F00;
+}
+
+div.install {width:650px; background-color: #00005a;}
+div.install h4 {margin:0; padding:0; color: #fff;}
+div.install .content {margin:0; padding:4px 4px 0 4px; border-style:solid; border-color:#bbb; border-width:0 1px 1px 1px; background-color: #fff;}

Added: juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/META-INF/MANIFEST.MF
URL: http://svn.apache.org/viewvc/juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/META-INF/MANIFEST.MF?rev=1452528&view=auto
==============================================================================
--- juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/META-INF/MANIFEST.MF (added)
+++ juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/META-INF/MANIFEST.MF Mon Mar  4 21:10:04 2013
@@ -0,0 +1,6 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: Apache Maven
+Built-By: kstam
+Build-Jdk: 1.6.0_41
+

Added: juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/META-INF/maven/org.apache.juddi/juddiv3-war/pom.properties
URL: http://svn.apache.org/viewvc/juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/META-INF/maven/org.apache.juddi/juddiv3-war/pom.properties?rev=1452528&view=auto
==============================================================================
--- juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/META-INF/maven/org.apache.juddi/juddiv3-war/pom.properties (added)
+++ juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/META-INF/maven/org.apache.juddi/juddiv3-war/pom.properties Mon Mar  4 21:10:04 2013
@@ -0,0 +1,5 @@
+#Generated by Maven
+#Mon Mar 04 15:53:33 EST 2013
+version=3.1.5-SNAPSHOT
+groupId=org.apache.juddi
+artifactId=juddiv3-war

Added: juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/META-INF/maven/org.apache.juddi/juddiv3-war/pom.xml
URL: http://svn.apache.org/viewvc/juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/META-INF/maven/org.apache.juddi/juddiv3-war/pom.xml?rev=1452528&view=auto
==============================================================================
--- juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/META-INF/maven/org.apache.juddi/juddiv3-war/pom.xml (added)
+++ juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/META-INF/maven/org.apache.juddi/juddiv3-war/pom.xml Mon Mar  4 21:10:04 2013
@@ -0,0 +1,247 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Copyright 2001-2009 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */ -->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+	<modelVersion>4.0.0</modelVersion>
+	<parent>
+		<groupId>org.apache.juddi</groupId>
+		<artifactId>juddi-parent</artifactId>
+		<version>3.1.5-SNAPSHOT</version>
+	</parent>
+	<artifactId>juddiv3-war</artifactId>
+	<packaging>war</packaging>
+	<name>jUDDI base-war Deployment</name>
+	<url>http://maven.apache.org</url>
+	<properties>
+		<cxf.version>2.3.1</cxf.version>
+	</properties>
+	<dependencies>
+		<dependency>
+			<artifactId>uddi-ws</artifactId>
+			<groupId>org.apache.juddi</groupId>
+			<version>3.1.5-SNAPSHOT</version>
+			<exclusions>
+				<exclusion>
+					<groupId>javax.xml.bind</groupId>
+					<artifactId>jaxb-api</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>com.sun.xml.ws</groupId>
+					<artifactId>jaxws-rt</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>com.sun.xml.bind</groupId>
+					<artifactId>jaxb-impl</artifactId>
+				</exclusion>
+			</exclusions>
+		</dependency>
+		<dependency>
+			<artifactId>juddi-core</artifactId>
+			<groupId>org.apache.juddi</groupId>
+			<version>3.1.5-SNAPSHOT</version>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<artifactId>juddi-core-openjpa</artifactId>
+			<groupId>org.apache.juddi</groupId>
+			<version>3.1.5-SNAPSHOT</version>
+			<exclusions>
+				<exclusion>
+					<groupId>org.apache.juddi</groupId>
+					<artifactId>uddi-ws</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>org.apache.juddi</groupId>
+					<artifactId>uddi-tck</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>javax.persistence</groupId>
+					<artifactId>persistence-api</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>commons-codec</groupId>
+					<artifactId>commons-codec</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>commons-configuration</groupId>
+					<artifactId>commons-configuration</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>commons-lang</groupId>
+					<artifactId>commons-lang</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>commons-collections</groupId>
+					<artifactId>commons-collections</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>log4j</groupId>
+					<artifactId>log4j</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>junit</groupId>
+					<artifactId>junit</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>org.apache.derby</groupId>
+					<artifactId>derby</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>mysql</groupId>
+					<artifactId>mysql-connector-java</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>org.hibernate</groupId>
+					<artifactId>hibernate</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>org.hibernate</groupId>
+					<artifactId>hibernate-entitymanager</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>cglib</groupId>
+					<artifactId>cglib-nodep</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>org.apache.openjpa</groupId>
+					<artifactId>openjpa</artifactId>
+				</exclusion>
+			</exclusions>
+		</dependency>
+		<dependency>
+			<groupId>commons-logging</groupId>
+			<artifactId>commons-logging</artifactId>
+			<version>1.1.1</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>javax.servlet</groupId>
+			<artifactId>servlet-api</artifactId>
+			<version>2.5</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>commons-configuration</groupId>
+			<artifactId>commons-configuration</artifactId>
+			<version>1.6</version>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.cxf</groupId>
+			<artifactId>cxf-rt-frontend-jaxws</artifactId>
+			<version>${cxf.version}</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.cxf</groupId>
+			<artifactId>cxf-rt-transports-http</artifactId>
+			<version>${cxf.version}</version>
+			<scope>provided</scope>
+			<exclusions>
+				<exclusion>
+					<groupId>cglib</groupId>
+					<artifactId>cglib</artifactId>
+				</exclusion>
+			</exclusions>
+		</dependency>
+		<dependency>
+			<groupId>cglib</groupId>
+			<artifactId>cglib-nodep</artifactId>
+			<version>2.1_3</version>
+			<scope>provided</scope>
+		</dependency>
+	</dependencies>
+	<build>
+		<finalName>juddi</finalName>
+	</build>
+	<profiles>
+		<profile>
+			<id>hibernate</id>
+			<activation>
+				<property>
+					<name>persistence</name>
+					<value>hibernate</value>
+				</property>
+			</activation>
+			<properties>
+				<persistence>hibernate</persistence>
+			</properties>
+			<build>
+				<plugins>
+                        	<plugin>
+                               	<groupId>org.apache.maven.plugins</groupId>
+                               	<artifactId>maven-antrun-plugin</artifactId>
+                                <version>1.3</version>
+                                <executions>
+                                        <execution>
+                                                <id>foo</id>
+                                                <phase>process-classes</phase>
+                                                <configuration>
+                                                        <tasks>
+								<echo>persistence=${persistence}</echo>
+								<copy file="${basedir}/persistence/${persistence}-persistence.xml" tofile="${basedir}/target/classes/META-INF/persistence.xml" overwrite="true" />
+                                                                <copy file="${basedir}/persistence/juddi-orm.xml" tofile="${basedir}/src/main/webapp/WEB-INF/classes/orm.xml" overwrite="true" />
+                                                        </tasks>
+                                                </configuration>
+                                                <goals>
+                                                        <goal>run</goal>
+                                                </goals>
+                                        </execution>
+                                </executions>
+                        	</plugin>
+				</plugins>
+			</build>
+		</profile>
+		<profile>
+			<id>openjpa</id>
+			<activation>
+			    <activeByDefault>true</activeByDefault>
+				<property>
+					<name>persistence</name>
+					<value>openjpa</value>
+				</property>
+			</activation>
+			<properties>
+				<persistence>openjpa</persistence>
+			</properties>
+			<build>
+			<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-antrun-plugin</artifactId>
+				<version>1.3</version>
+				<executions>
+					<execution>
+						<id>foo</id>
+						<phase>compile</phase>
+						<configuration>
+							<tasks>
+								<echo>persistence=${persistence}</echo>
+								<copy file="${basedir}/persistence/${persistence}-persistence.xml" tofile="${basedir}/target/classes/META-INF/persistence.xml" overwrite="true" />
+								<delete file="${basedir}/src/main/webapp/WEB-INF/classes/orm.xml" />
+							</tasks>
+						</configuration>
+						<goals>
+							<goal>run</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			</plugins>
+			</build>
+		</profile>
+	</profiles>
+</project>

Added: juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/META-INF/DEPENDENCIES
URL: http://svn.apache.org/viewvc/juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/META-INF/DEPENDENCIES?rev=1452528&view=auto
==============================================================================
--- juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/META-INF/DEPENDENCIES (added)
+++ juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/META-INF/DEPENDENCIES Mon Mar  4 21:10:04 2013
@@ -0,0 +1,45 @@
+// ------------------------------------------------------------------
+// Transitive dependencies of this project determined from the
+// maven pom organized by organization.
+// ------------------------------------------------------------------
+
+jUDDI base-war Deployment
+
+
+From: 'an unknown organization'
+  - commons-beanutils  commons-beanutils:commons-beanutils:jar:1.7.0
+
+  - WSDL4J (http://sf.net/projects/wsdl4j) wsdl4j:wsdl4j:jar:1.6.2
+    License: CPL  (http://www.opensource.org/licenses/cpl1.0.txt)
+
+From: 'The Apache Software Foundation' (http://commons.apache.org/)
+  - Commons Configuration (http://commons.apache.org/${pom.artifactId.substring(8)}/) commons-configuration:commons-configuration:jar:1.6
+    License: The Apache Software License, Version 2.0  (/LICENSE.txt)
+
+From: 'The Apache Software Foundation' (http://jakarta.apache.org)
+  - Digester (http://jakarta.apache.org/commons/digester/) commons-digester:commons-digester:jar:1.8
+    License: The Apache Software License, Version 2.0  (/LICENSE.txt)
+  - Logging (http://jakarta.apache.org/commons/logging/) commons-logging:commons-logging-api:jar:1.1
+    License: The Apache Software License, Version 2.0  (/LICENSE.txt)
+
+From: 'The Apache Software Foundation' (http://www.apache.org)
+  - Apache Geronimo JAX-WS 2.2 API (http://geronimo.apache.org/maven/specs/geronimo-jaxws_2.2_spec/1.0) org.apache.geronimo.specs:geronimo-jaxws_2.2_spec:bundle:1.0
+    License: The Apache Software License, Version 2.0  (http://www.apache.org/licenses/LICENSE-2.0.txt)
+
+From: 'The Apache Software Foundation' (http://www.apache.org/)
+  - Commons BeanUtils Core (http://commons.apache.org/beanutils/) commons-beanutils:commons-beanutils-core:jar:1.8.0
+    License: The Apache Software License, Version 2.0  (http://www.apache.org/licenses/LICENSE-2.0.txt)
+  - Commons Collections (http://commons.apache.org/collections/) commons-collections:commons-collections:jar:3.2.1
+    License: The Apache Software License, Version 2.0  (http://www.apache.org/licenses/LICENSE-2.0.txt)
+  - Commons Lang (http://commons.apache.org/lang/) commons-lang:commons-lang:jar:2.4
+    License: The Apache Software License, Version 2.0  (http://www.apache.org/licenses/LICENSE-2.0.txt)
+  - jUDDI Client side Code (http://juddi.apache.org/juddi-client/) org.apache.juddi:juddi-client:bundle:3.1.5-SNAPSHOT
+    License: The Apache Software License, Version 2.0  (http://www.apache.org/licenses/LICENSE-2.0.txt)
+  - jUDDI Core - OpenJPA (http://juddi.apache.org/juddi-core-openjpa/) org.apache.juddi:juddi-core-openjpa:bundle:3.1.5-SNAPSHOT
+    License: The Apache Software License, Version 2.0  (http://www.apache.org/licenses/LICENSE-2.0.txt)
+  - UDDI_v3 WS Stubs and Schema Bindings Generated from WSDL (http://juddi.apache.org/uddi-ws/) org.apache.juddi:uddi-ws:bundle:3.1.5-SNAPSHOT
+    License: The Apache Software License, Version 2.0  (http://www.apache.org/licenses/LICENSE-2.0.txt)
+
+
+
+

Added: juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/META-INF/LICENSE
URL: http://svn.apache.org/viewvc/juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/META-INF/LICENSE?rev=1452528&view=auto
==============================================================================
--- juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/META-INF/LICENSE (added)
+++ juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/META-INF/LICENSE Mon Mar  4 21:10:04 2013
@@ -0,0 +1,202 @@
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.

Added: juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/META-INF/NOTICE
URL: http://svn.apache.org/viewvc/juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/META-INF/NOTICE?rev=1452528&view=auto
==============================================================================
--- juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/META-INF/NOTICE (added)
+++ juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/META-INF/NOTICE Mon Mar  4 21:10:04 2013
@@ -0,0 +1,8 @@
+
+jUDDI base-war Deployment
+Copyright 2004-2013 The Apache Software Foundation
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).
+
+

Added: juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/META-INF/persistence.xml
URL: http://svn.apache.org/viewvc/juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/META-INF/persistence.xml?rev=1452528&view=auto
==============================================================================
--- juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/META-INF/persistence.xml (added)
+++ juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/META-INF/persistence.xml Mon Mar  4 21:10:04 2013
@@ -0,0 +1,79 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<persistence xmlns="http://java.sun.com/xml/ns/persistence" 
+             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+             xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd" 
+             version="1.0">
+  <persistence-unit name="juddiDatabase" transaction-type="RESOURCE_LOCAL">
+    <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider>
+    <non-jta-data-source>java:comp/env/jdbc/JuddiDS</non-jta-data-source>
+    <!-- entity classes -->
+    <class>org.apache.juddi.model.Address</class>
+    <class>org.apache.juddi.model.AddressLine</class>
+    <class>org.apache.juddi.model.AuthToken</class>
+    <class>org.apache.juddi.model.BindingCategoryBag</class>
+    <class>org.apache.juddi.model.BindingDescr</class>
+    <class>org.apache.juddi.model.BindingTemplate</class>
+    <class>org.apache.juddi.model.BusinessCategoryBag</class>
+    <class>org.apache.juddi.model.BusinessDescr</class>
+    <class>org.apache.juddi.model.BusinessEntity</class>
+    <class>org.apache.juddi.model.BusinessIdentifier</class>
+    <class>org.apache.juddi.model.BusinessName</class>
+    <class>org.apache.juddi.model.BusinessService</class>
+    <class>org.apache.juddi.model.CanonicalizationMethod</class>
+    <class>org.apache.juddi.model.CategoryBag</class>
+    <class>org.apache.juddi.model.Clerk</class>
+    <class>org.apache.juddi.model.ClientSubscriptionInfo</class>
+    <class>org.apache.juddi.model.Contact</class>
+    <class>org.apache.juddi.model.ContactDescr</class>
+    <class>org.apache.juddi.model.DiscoveryUrl</class>
+    <class>org.apache.juddi.model.Email</class>
+    <class>org.apache.juddi.model.InstanceDetailsDescr</class>
+    <class>org.apache.juddi.model.InstanceDetailsDocDescr</class>
+    <class>org.apache.juddi.model.KeyedReference</class>
+    <class>org.apache.juddi.model.KeyedReferenceGroup</class>
+    <class>org.apache.juddi.model.KeyDataValue</class>
+    <class>org.apache.juddi.model.KeyInfo</class>
+    <class>org.apache.juddi.model.Node</class>
+    <class>org.apache.juddi.model.ObjectType</class>
+    <class>org.apache.juddi.model.ObjectTypeContent</class>
+    <class>org.apache.juddi.model.OverviewDoc</class>
+    <class>org.apache.juddi.model.OverviewDocDescr</class>
+    <class>org.apache.juddi.model.PersonName</class>
+    <class>org.apache.juddi.model.Phone</class>
+    <class>org.apache.juddi.model.Publisher</class>
+    <class>org.apache.juddi.model.PublisherAssertion</class>
+    <class>org.apache.juddi.model.PublisherAssertionId</class>
+    <class>org.apache.juddi.model.Reference</class>
+    <class>org.apache.juddi.model.ServiceCategoryBag</class>
+    <class>org.apache.juddi.model.ServiceDescr</class>
+    <class>org.apache.juddi.model.ServiceName</class>
+    <class>org.apache.juddi.model.ServiceProjection</class>
+    <class>org.apache.juddi.model.ServiceProjectionId</class>
+    <class>org.apache.juddi.model.Signature</class>
+    <class>org.apache.juddi.model.SignatureMethod</class>
+    <class>org.apache.juddi.model.SignatureTransform</class>
+    <class>org.apache.juddi.model.SignatureTransformDataValue</class>
+    <class>org.apache.juddi.model.SignatureValue</class>
+    <class>org.apache.juddi.model.SignedInfo</class>
+    <class>org.apache.juddi.model.Subscription</class>
+    <class>org.apache.juddi.model.SubscriptionChunkToken</class>
+    <class>org.apache.juddi.model.SubscriptionMatch</class>
+    <class>org.apache.juddi.model.Tmodel</class>
+    <class>org.apache.juddi.model.TmodelCategoryBag</class>
+    <class>org.apache.juddi.model.TmodelDescr</class>
+    <class>org.apache.juddi.model.TmodelIdentifier</class>
+    <class>org.apache.juddi.model.TmodelInstanceInfo</class>
+    <class>org.apache.juddi.model.TmodelInstanceInfoDescr</class>
+    <class>org.apache.juddi.model.TransferToken</class>
+    <class>org.apache.juddi.model.TransferTokenKey</class>
+    <class>org.apache.juddi.model.UddiEntity</class>
+    <class>org.apache.juddi.model.UddiEntityPublisher</class>
+    <properties>
+      <property name="openjpa.jdbc.SynchronizeMappings" value="buildSchema(SchemaAction='add')"/>
+      <property name="openjpa.Log" value="DefaultLevel=WARN, Tool=INFO"/>
+      <property name="openjpa.jdbc.UpdateManager" value="operation-order"/>
+      <property name="openjpa.jdbc.DBDictionary" value="derby"/>
+      <property name="openjpa.RuntimeUnenhancedClasses" value="warn"/>
+    </properties>
+  </persistence-unit>
+</persistence>

Added: juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/UDDI_Publisher.xml
URL: http://svn.apache.org/viewvc/juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/UDDI_Publisher.xml?rev=1452528&view=auto
==============================================================================
--- juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/UDDI_Publisher.xml (added)
+++ juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/UDDI_Publisher.xml Mon Mar  4 21:10:04 2013
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Copyright 2001-2009 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */ -->
+<publisher xmlns="urn:juddi-apache-org:api_v3" authorizedName="uddi">
+  <publisherName>UDDI publisher</publisherName>
+  <isAdmin>false</isAdmin>
+</publisher>
+

Added: juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/UDDI_tModels.xml
URL: http://svn.apache.org/viewvc/juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/UDDI_tModels.xml?rev=1452528&view=auto
==============================================================================
--- juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/UDDI_tModels.xml (added)
+++ juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/UDDI_tModels.xml Mon Mar  4 21:10:04 2013
@@ -0,0 +1,800 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Copyright 2001-2009 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */ -->
+<save_tModel xmlns="urn:uddi-org:api_v3">
+  <tModel tModelKey="uddi:uddi.org:keygenerator" xmlns="urn:uddi-org:api_v3">
+    <name>uddi-org:keyGenerator</name>
+    <description>UDDI domain key generator</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#keyGen</overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference tModelKey="uddi:uddi.org:categorization:types" keyName="uddi-org:types:keyGenerator"
+        keyValue="keyGenerator" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:categorization:keygenerator" xmlns="urn:uddi-org:api_v3">
+    <name>uddi-org:categorization:keyGenerator
+		</name>
+    <description>Key Generator for UDDI Categorization tModels
+		</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#categorizationKeyGen
+          </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:keyGenerator" keyValue="keyGenerator" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:sortorder:keygenerator" xmlns="urn:uddi-org:api_v3">
+    <name>uddi-org:sortorder:keyGenerator
+		</name>
+    <description>Key Generator for UDDI Sort Order tModels
+		</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#sortorderKeyGen
+          </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:keyGenerator" keyValue="keyGenerator" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:transport:keygenerator" xmlns="urn:uddi-org:api_v3">
+    <name>uddi-org:transport:keyGenerator
+		</name>
+    <description>Key Generator for UDDI Transport tModels </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#transportKeyGen
+          </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:keyGenerator" keyValue="keyGenerator" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:protocol:keygenerator" xmlns="urn:uddi-org:api_v3">
+    <name>uddi-org: protocol:keyGenerator</name>
+    <description> Key Generator for UDDI Protocol tModels </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#protocolKeyGen
+          </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:keyGenerator" keyValue="keyGenerator" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:v3_inquiry">
+    <name>uddi-org:inquiry_v3</name>
+    <description>UDDI Inquiry API V3.0</description>
+    <overviewDoc>
+      <overviewURL useType="wsdlInterface">
+        http://uddi.org/wsdl/uddi_api_v3_binding.wsdl#UDDI_Inquiry_SoapBinding
+			</overviewURL>
+    </overviewDoc>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#InqV3
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:wsdl" keyValue="wsdlSpec" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:soap" keyValue="soapSpec" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:xml" keyValue="xmlSpec" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:specification" keyValue="specification" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:v3_publication">
+    <name>uddi-org:publication_v3</name>
+    <description>UDDI Publication API V3.0</description>
+    <overviewDoc>
+      <overviewURL useType="wsdlInterface">
+        http://uddi.org/wsdl/uddi_api_v3_binding.wsdl#UDDI_Publication_SoapBinding
+			</overviewURL>
+    </overviewDoc>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#PubV3
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:wsdl" keyValue="wsdlSpec" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:soap" keyValue="soapSpec" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:xml" keyValue="xmlSpec" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:specification" keyValue="specification" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:v3_security">
+    <name>uddi-org:security_v3</name>
+    <description>UDDI Security API V3.0</description>
+    <overviewDoc>
+      <overviewURL useType="wsdlInterface">
+        http://uddi.org/wsdl/uddi_api_v3_binding.wsdl#UDDI_Security_SoapBinding
+			</overviewURL>
+    </overviewDoc>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#SecV3
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:wsdl" keyValue="wsdlSpec" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:soap" keyValue="soapSpec" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:xml" keyValue="xmlSpec" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:specification" keyValue="specification" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:categorization:types">
+    <name>uddi-org:types</name>
+    <description>UDDI Type Category System</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#UDDITypes
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:categorization" keyValue="categorization" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:checked" keyValue="checked" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:cacheable" keyValue="cacheable" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:categorization:general_keywords">
+    <name>uddi-org:general_keywords</name>
+    <description>Category system consisting of namespace
+      identifiers and the keywords associated with
+      the namespaces.
+  </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#GenKW
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:categorization" keyValue="categorization" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:checked" keyValue="checked" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:categorization:nodes">
+    <name>uddi-org:nodes</name>
+    <description>Category system for identifying the nodes
+      of a registry.
+  </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#Nodes
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:categorization" keyValue="categorization" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:checked" keyValue="checked" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:uncacheable" keyValue="uncacheable" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:relationships">
+    <name>uddi-org:relationships</name>
+    <description>Basic types of business relationships
+  </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#Relationships
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:categorization" keyValue="categorization" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:unchecked" keyValue="unchecked" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:categorization:owningbusiness">
+    <name>uddi-org:owningBusiness_v3</name>
+    <description>Category system used to point to the
+      businessEntity
+      associated with the publisher of the tModel.
+  </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#owningBusiness
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:categorization" keyValue="categorization" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:checked" keyValue="checked" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:uncacheable" keyValue="uncacheable" tModelKey="uddi:uddi.org:categorization:types" />
+
+      <keyedReference keyName="entityKeyValues" keyValue="businessKey" tModelKey="uddi:uddi.org:categorization:entitykeyvalues" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:identifier:isreplacedby">
+    <name>uddi-org:isReplacedBy</name>
+    <description>Identifier system used to point to the UDDI
+      entity,
+      using UDDI keys, that is the logical replacement
+      for the one in which isReplacedBy is used.
+  </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#IsReplacedBy
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:identifier" keyValue="identifier" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:checked" keyValue="checked" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:uncacheable" keyValue="uncacheable" tModelKey="uddi:uddi.org:categorization:types" />
+
+      <keyedReference keyName="entityKeyValues" keyValue="businessKey" tModelKey="uddi:uddi.org:categorization:entitykeyvalues" />
+
+      <keyedReference keyName="entityKeyValues" keyValue="tModelKey" tModelKey="uddi:uddi.org:categorization:entitykeyvalues" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:categorization:validatedby">
+    <name>uddi-org:validatedBy</name>
+    <description>Category system used to point a value set or
+      category
+      group system tModel to associated value set Web service
+      implementations.
+  </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#validatedBy
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:categorization" keyValue="categorization" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:checked" keyValue="checked" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:uncacheable" keyValue="uncacheable" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="entityKeyValues" keyValue="bindingKey" tModelKey="uddi:uddi.org:categorization:entitykeyvalues" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:categorization:derivedfrom">
+    <name>uddi-org:derivedFrom</name>
+    <description>Category system for referring tModels to other
+      tModels for the purpose of reuse.
+  </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#DerivedFrom
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:categorization" keyValue="categorization" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:checked" keyValue="checked" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:uncacheable" keyValue="uncacheable" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="entityKeyValues" keyValue="tModelKey" tModelKey="uddi:uddi.org:categorization:entitykeyvalues" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:categorization:entitykeyvalues">
+    <name>uddi-org:entityKeyValues</name>
+    <description>Category system used to declare that a value set
+      uses entity keys as valid values.
+     </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#entityKeyValues
+          </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:categorization" keyValue="categorization" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:checked" keyValue="checked" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:protocol:serverauthenticatedssl3">
+    <name>uddi-org:serverAuthenticatedSSL3
+		</name>
+    <description>Secure Sockets Layer Version 3.0 with Server
+      Authentication</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#serverSSL3
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:protocol" keyValue="protocol" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:protocol:mutualauthenticatedssl3">
+    <name>uddi-org:mutualAuthenticatedSSL3
+		</name>
+    <description>Secure Sockets Layer Version 3.0 with Mutual
+      Authentication</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#mutualSSL3
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:protocol" keyValue="protocol" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:transport:http">
+    <name>uddi-org:http</name>
+    <description> A Web service that uses HTTP transport</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#overHTTP
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:transport" keyValue="transport" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:transport:smtp">
+    <name>uddi-org:smtp</name>
+    <description>E-mail based Web service</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#overSMTP
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:transport" keyValue="transport" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:transport:ftp">
+    <name>uddi-org:ftp</name>
+    <description>File Transfer Protocol (FTP) based Web service
+		</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#overFTP
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:transport" keyValue="transport" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:transport:fax">
+    <name>uddi-org:fax</name>
+    <description>Fax-based Web service</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#overFax
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:transport" keyValue="transport" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:transport:telephone">
+    <name>uddi-org:telephone</name>
+    <description>Telephone based service</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#overPhone
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:transport" keyValue="transport" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:approximatematch">
+    <name>uddi-org:approximateMatch:SQL99
+		</name>
+    <description>UDDI approximate matching find qualifier
+		</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#wildcard
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:exactmatch">
+    <name>uddi-org:exactMatch</name>
+    <description>UDDI exact name matching findQualifier
+  </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#exactmatch
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:caseinsensitivematch">
+    <name>uddi-org:caseInsensitiveMatch
+		</name>
+    <description>UDDI case insensitive matching find qualifier
+		</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#caseinsens
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:casesensitivematch">
+    <name>uddi-org:caseSensitiveMatch</name>
+    <description>UDDI Case Sensitive Matching find qualifier
+		</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#casesens
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:diacriticsinsensitivematch">
+    <name>uddi-org:diacriticsInsensitiveMatch
+		</name>
+    <description>UDDI Diacritics Insensitive Matching find qualifier
+		</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#diacritInsens
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:diacriticssensitivematch">
+    <name>uddi-org:diacriticsSensitiveMatch
+		</name>
+    <description>UDDI Diacritics Sensitive Matching find qualifier
+		</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#diacritSens
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:sortorder:binarysort">
+    <name>uddi-org:binarySort</name>
+    <description>UDDI binary sort sortOrder qualifier
+  </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#sortOrd
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:sortOrder" keyValue="sortOrder" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:sortorder:uts-10">
+    <name>uddi-org:UTS-10</name>
+    <description>UDDI Unicode Technical Standard #10 sort
+      collation sequence find qualifier
+  </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#UCASort
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:sortOrder" keyValue="sortOrder" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:caseinsensitivesort">
+    <name>uddi-org:caseInsensitiveSort</name>
+    <description>UDDI sort qualifier used to sort results without
+      regard to case</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#caseInsensSort
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:casesensitivesort">
+    <name>uddi-org:caseSensitiveSort</name>
+    <description>UDDI sort qualifier used to sort results using
+      case sensitivity</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#caseSensSort
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+
+      <keyedReference keyName="uddi-org:types:sortOrder" keyValue="sortOrder" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:sortbynameasc">
+    <name>uddi-org:sortByNameAsc</name>
+    <description>UDDI sort qualifier used to sort results by name
+      in ascending order</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#nameAsc
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:sortbynamedesc">
+    <name>uddi-org:sortByNameDesc</name>
+    <description>UDDI sort qualifier used to sort results by
+      name in descending order</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#nameDesc
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:sortbydateasc">
+    <name>uddi-org:sortByDateAsc</name>
+    <description>UDDI sort qualifier used to sort results by date in
+      ascending order</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#dateAsc
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:sortbydatedesc">
+    <name>uddi-org:sortByDateDesc</name>
+    <description>UDDI sort qualifier used to sort results
+      by date in descending order</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#dateDesc
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:andallkeys">
+    <name>uddi-org:andAllKeys</name>
+    <description>UDDI find qualifier used to request that a
+      logical AND be performed on bag contents
+      prior to a search</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#andAll
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:orallkeys">
+    <name>uddi-org:orAllKeys</name>
+    <description>UDDI find qualifier used to request that a
+      logical OR be performed on bag contents
+      prior to a search</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#orAll
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:orlikekeys">
+    <name>uddi-org:orLikeKeys</name>
+    <description>UDDI find qualifier used to find entities
+      that reference one of the values from each
+      referenced value set</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#orLike
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:combinecategorybags">
+    <name>uddi-org:combineCategoryBags</name>
+    <description>UDDI find qualifier used to treat all of the
+      categoryBags within a businessEntity as if
+      they were one during inquiry</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#combineCatBags
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:servicesubset">
+    <name>uddi-org:serviceSubset</name>
+    <description>UDDI find qualifier used to use categoryBags
+      of businessService elements to satisfy the
+      find_business inquiry.</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#servSubset
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:bindingsubset">
+    <name>uddi-org:bindingSubset</name>
+    <description>UDDI find qualifier for specifying use of
+      categoryBags of bindingTempate elements to satisfy
+      the find_business or find_service inquiries.
+  </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#bindSubset
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:suppressProjectedServices">
+    <name>uddi-org:suppressProjectedServices
+		</name>
+    <description>UDDI find qualifier used to exclude service
+      projections from an inquiry function at all
+      levels.</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#suppressProjSvcs
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:signaturepresent">
+    <name>uddi-org:signaturePresent</name>
+    <description>UDDI findQualifier used to return only entities
+      that have or are contained in entities that have
+      XML Digital Signatures.</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#sign
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:specification:hostingredirector">
+    <name>uddi-org:hostingRedirector</name>
+    <description>UDDI Hosting Redirector service specification
+		</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#hostDir
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:specification" keyValue="specification" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:specification:v3_policy">
+    <name>uddi-org:v3_policy</name>
+    <description>UDDI Policy Description service specification
+		</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#policyDesc
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:specification" keyValue="specification" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:v3_ownership_transfer">
+    <name>uddi-org:ownership_transfer_v3</name>
+    <description>UDDI Custody and Ownership Transfer API V3.0</description>
+    <overviewDoc>
+      <overviewURL useType="wsdlInterface">
+         http://uddi.org/wsdl/uddi_custody_v3_binding.wsdl
+      </overviewURL>
+    </overviewDoc>
+    <overviewDoc>
+      <overviewURL useType="text">
+         http://uddi.org/pubs/uddi_v3.htm#OwnershipTransfer
+      </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:wsdl"
+        keyValue="wsdlSpec"
+        tModelKey="uddi:uddi.org:categorization:types"/>
+      <keyedReference keyName="uddi-org:types:soap"
+        keyValue="soapSpec"
+        tModelKey="uddi:uddi.org:categorization:types"/>
+      <keyedReference keyName="uddi-org:types:xml"
+        keyValue="xmlSpec"
+        tModelKey="uddi:uddi.org:categorization:types"/>
+      <keyedReference keyName="uddi-org:types:specification"
+        keyValue="specification"
+        tModelKey="uddi:uddi.org:categorization:types"/>
+     </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:v3_subscription">
+    <name>uddi-org:subscription_v3</name>
+    <description>UDDI Subscription API V3.0</description>
+    <overviewDoc>
+      <overviewURL useType="wsdlInterface">
+         http://uddi.org/wsdl/uddi_sub_v3_binding.wsdl
+      </overviewURL>
+    </overviewDoc>
+    <overviewDoc>
+      <overviewURL useType="text">
+         http://uddi.org/pubs/uddi_v3.htm#Sub
+      </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:wsdl"
+        keyValue="wsdlSpec"
+        tModelKey="uddi:uddi.org:categorization:types"/>
+      <keyedReference keyName="uddi-org:types:soap"
+        keyValue="soapSpec"
+        tModelKey="uddi:uddi.org:categorization:types"/>
+      <keyedReference keyName="uddi-org:types:xml"
+        keyValue="xmlSpec"
+        tModelKey="uddi:uddi.org:categorization:types"/>
+      <keyedReference keyName="uddi-org:types:specification"
+        keyValue="specification"
+        tModelKey="uddi:uddi.org:categorization:types"/>
+     </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:v3_subscriptionlistener">
+    <name>uddi-org:subscriptionListener_v3</name>
+    <description>UDDI Subscription Listener API V3.0</description>
+    <overviewDoc>
+      <overviewURL useType="wsdlInterface">
+          http://uddi.org/wsdl/uddi_subr_v3_binding.wsdl
+      </overviewURL>
+    </overviewDoc>
+    <overviewDoc>
+      <overviewURL useType="text">
+         http://uddi.org/pubs/uddi_v3.htm#Subscribe
+      </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:wsdl"
+        keyValue="wsdlSpec"
+        tModelKey="uddi:uddi.org:categorization:types"/>
+      <keyedReference keyName="uddi-org:types:soap"
+        keyValue="soapSpec"
+        tModelKey="uddi:uddi.org:categorization:types"/>
+      <keyedReference keyName="uddi-org:types:xml"
+        keyValue="xmlSpec"
+        tModelKey="uddi:uddi.org:categorization:types"/>
+      <keyedReference keyName="uddi-org:types:specification"
+        keyValue="specification"
+        tModelKey="uddi:uddi.org:categorization:types"/>
+     </categoryBag>
+  </tModel>
+</save_tModel>
\ No newline at end of file

Added: juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/marketing_BusinessEntity.xml
URL: http://svn.apache.org/viewvc/juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/marketing_BusinessEntity.xml?rev=1452528&view=auto
==============================================================================
--- juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/marketing_BusinessEntity.xml (added)
+++ juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/marketing_BusinessEntity.xml Mon Mar  4 21:10:04 2013
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Copyright 2001-2009 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */ -->
+ <!-- 
+  This file contains the root business entity structure that represents your registry.  The key chosen (or generated) for this entity will serve
+  as the node id for all entities published within the registry.  The services contained within this business entity reflect the UDDI APIs that
+  you wish to support (adding or subtracting the services here will not enable/disable them, simply add/omit them from being discovered via UDDI).
+  
+  The top-level business entity and sub-entities all use keys as unique identifiers.  They are left blank by default which means the system will
+  generate a key (generated as root partition with GUID appended).  You can choose to create your own, human-readable keys but they must match
+  the root key generator created in the root_tModelKeyGen.xml file.  Matching means they must equal the root key generator with the keyword
+  "keygenerator" replaced by your own string.
+  
+  Example:
+  
+  root_tModelKeyGen.xml key is uddi:www.mycompany.com:registry:keygenerator
+  
+  Legal user-defined keys are:
+  
+  uddi:www.mycompany.com:registry:ubr-node (for the businessKey)
+  uddi:www.mycompany.com:registry:inquiry-service (for the inquiry service service key)
+  uddi:www.mycompany.com:registry:inquiry-service-wsdlDeployment (for the inquiry service binding template that represents the WSDL)
+  
+  
+  See below for other fields that you may want to edit...
+  -->
+<businessEntity xmlns="urn:uddi-org:api_v3" xmlns:xml="http://www.w3.org/XML/1998/namespace" businessKey="uddi:marketing.apache.org:marketing-asf">
+  <!-- Change the name field to represent the name of your registry -->
+  <name xml:lang="en">Marketing Node</name>
+  <!-- Change the description field to provided a brief description of your registry -->
+  <description xml:lang="en">This is a UDDI v3 registry for Marketing</description>
+  <discoveryURLs>
+    <!-- This discovery URL should point to the home installation URL of jUDDI -->
+    <discoveryURL useType="home">${juddi.server.baseurl}/juddiv3</discoveryURL>
+  </discoveryURLs>
+  <businessServices>
+    <!-- As mentioned above, you may want to provide user-defined keys for these (and the services/bindingTemplates below.  Services that you
+    don't intend to support should be removed entirely -->
+    <businessService serviceKey="uddi:marketing.apache.org:services-subscriptionlistener" businessKey="uddi:marketing.apache.org:marketing-asf">
+      <name xml:lang="en">Marketing Subscription Listener Service</name>
+      <description xml:lang="en">Web Service supporting UDDI Subscription Listener API</description>
+      <bindingTemplates>
+        <bindingTemplate bindingKey="uddi:marketing.apache.org:servicebindings-subscriptionlistener-ws" serviceKey="uddi:marketing.apache.org:services-subscriptionlistener">
+          <description>UDDI Subscription Listener API V3</description>
+          <accessPoint useType="wsdlDeployment">${juddi.server.baseurl}/juddiv3/services/subscription-listener?wsdl</accessPoint>
+          <tModelInstanceDetails>
+            <tModelInstanceInfo tModelKey="uddi:uddi.org:v3_subscriptionlistener" />
+          </tModelInstanceDetails>
+          <categoryBag>
+            <keyedReference keyName="uddi-org:types:wsdl" keyValue="wsdlDeployment" tModelKey="uddi:uddi.org:categorization:types"/>
+          </categoryBag>
+        </bindingTemplate>
+      </bindingTemplates>
+    </businessService>
+  </businessServices>
+</businessEntity>
+
+
+
+

Added: juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/marketing_Publisher.xml
URL: http://svn.apache.org/viewvc/juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/marketing_Publisher.xml?rev=1452528&view=auto
==============================================================================
--- juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/marketing_Publisher.xml (added)
+++ juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/marketing_Publisher.xml Mon Mar  4 21:10:04 2013
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Copyright 2001-2009 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */ -->
+<publisher xmlns="urn:juddi-apache-org:api_v3" authorizedName="marketing">
+  <publisherName>Marketing Listener Publisher</publisherName>
+  <isAdmin>false</isAdmin>
+</publisher>
+

Added: juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/marketing_tModels.xml
URL: http://svn.apache.org/viewvc/juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/marketing_tModels.xml?rev=1452528&view=auto
==============================================================================
--- juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/marketing_tModels.xml (added)
+++ juddi/trunk/juddi-examples/uddi-annotations/target/war/work/juddi/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/marketing_tModels.xml Mon Mar  4 21:10:04 2013
@@ -0,0 +1,55 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Copyright 2001-2009 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */ -->
+<save_tModel xmlns="urn:uddi-org:api_v3">
+	<tModel tModelKey="uddi:marketing.apache.org:keygenerator" xmlns="urn:uddi-org:api_v3">
+	  <name>marketing-apache-org:keyGenerator</name>
+	  <description>Marketing domain key generator</description>
+	  <overviewDoc>
+	    <overviewURL useType="text">
+	      http://uddi.org/pubs/uddi_v3.htm#keyGen</overviewURL>
+	  </overviewDoc>
+	  <categoryBag>
+	    <keyedReference tModelKey="uddi:uddi.org:categorization:types" keyName="uddi-org:types:keyGenerator"
+	      keyValue="keyGenerator" />
+	  </categoryBag>
+	</tModel>
+	<tModel tModelKey="uddi:marketing.apache.org:subscription:keygenerator" xmlns="urn:uddi-org:api_v3">
+	  <name>marketing-apache-org:subscription:keyGenerator</name>
+	  <description>Marketing Subscriptions domain key generator</description>
+	  <overviewDoc>
+	    <overviewURL useType="text">
+	      http://uddi.org/pubs/uddi_v3.htm#keyGen</overviewURL>
+	  </overviewDoc>
+	  <categoryBag>
+	    <keyedReference tModelKey="uddi:uddi.org:categorization:types" keyName="uddi-org:types:keyGenerator"
+	      keyValue="keyGenerator" />
+	  </categoryBag>
+	</tModel>
+	<tModel tModelKey="uddi:sales.apache.org:keygenerator" xmlns="urn:uddi-org:api_v3">
+	  <name>sales-apache-org:keyGenerator</name>
+	  <description>Sales Root domain key generator</description>
+	  <overviewDoc>
+	    <overviewURL useType="text">
+	      http://uddi.org/pubs/uddi_v3.htm#keyGen</overviewURL>
+	  </overviewDoc>
+	  <categoryBag>
+	    <keyedReference tModelKey="uddi:uddi.org:categorization:types" keyName="uddi-org:types:keyGenerator"
+	      keyValue="keyGenerator" />
+	  </categoryBag>
+	</tModel>
+</save_tModel>
\ No newline at end of file



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@juddi.apache.org
For additional commands, e-mail: commits-help@juddi.apache.org