You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by al...@apache.org on 2014/01/04 01:39:41 UTC

svn commit: r1555300 [1/3] - in /juddi/trunk: juddi-core/src/main/java/org/apache/juddi/mapping/ uddi-tck/src/test/java/org/apache/juddi/v3/tck/ uddi-ws/src/main/java/org/apache/juddi/api_v3/ uddi-ws/src/main/java/org/apache/juddi/v3_service/ uddi-ws/s...

Author: alexoree
Date: Sat Jan  4 00:39:41 2014
New Revision: 1555300

URL: http://svn.apache.org/r1555300
Log:
JUDDI-623 fixed on the trunk

Added:
    juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/SyncSubscriptionDetailResponse.java
    juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/SyncSubscriptionRequest.java
Modified:
    juddi/trunk/juddi-core/src/main/java/org/apache/juddi/mapping/MappingModelToApi.java
    juddi/trunk/uddi-tck/src/test/java/org/apache/juddi/v3/tck/UDDI_080_SubscriptionIntegrationTest.java
    juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/Clerk.java
    juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClerkDetail.java
    juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClientSubscriptionInfo.java
    juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClientSubscriptionInfoDetail.java
    juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteClientSubscriptionInfo.java
    juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeletePublisher.java
    juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllPublisherDetail.java
    juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetPublisherDetail.java
    juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/Node.java
    juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/NodeDetail.java
    juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/ObjectFactory.java
    juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/Publisher.java
    juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/PublisherDetail.java
    juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/SaveClerk.java
    juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/SaveClientSubscriptionInfo.java
    juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/SaveNode.java
    juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/SavePublisher.java
    juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/SyncSubscription.java
    juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/SyncSubscriptionDetail.java
    juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/package-info.java
    juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/v3_service/JUDDIApiPortType.java
    juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/v3_service/package-info.java
    juddi/trunk/uddi-ws/src/main/resources/juddi_api_v1.wsdl

Modified: juddi/trunk/juddi-core/src/main/java/org/apache/juddi/mapping/MappingModelToApi.java
URL: http://svn.apache.org/viewvc/juddi/trunk/juddi-core/src/main/java/org/apache/juddi/mapping/MappingModelToApi.java?rev=1555300&r1=1555299&r2=1555300&view=diff
==============================================================================
--- juddi/trunk/juddi-core/src/main/java/org/apache/juddi/mapping/MappingModelToApi.java (original)
+++ juddi/trunk/juddi-core/src/main/java/org/apache/juddi/mapping/MappingModelToApi.java Sat Jan  4 00:39:41 2014
@@ -1073,7 +1073,13 @@ public class MappingModelToApi {
 				throws DispositionReportFaultMessage {
 		
 		apiClientSubscriptionInfo.setSubscriptionKey(modelClientSubscriptionInfo.getSubscriptionKey());
-		apiClientSubscriptionInfo.setLastModified(modelClientSubscriptionInfo.getLastNotified());
+                GregorianCalendar gcal = new GregorianCalendar();
+                gcal.setTimeInMillis(modelClientSubscriptionInfo.getLastNotified().getTime());
+                try {
+                        apiClientSubscriptionInfo.setLastModified( DatatypeFactory.newInstance().newXMLGregorianCalendar(gcal));
+                } catch (DatatypeConfigurationException ex) {
+                        logger.warn("unable to create DatatypeFactory",ex);
+                }
 		
 		if (modelClientSubscriptionInfo.getFromClerk()!=null) {
 			org.apache.juddi.api_v3.Clerk apiFromClerk = new org.apache.juddi.api_v3.Clerk();

Modified: juddi/trunk/uddi-tck/src/test/java/org/apache/juddi/v3/tck/UDDI_080_SubscriptionIntegrationTest.java
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-tck/src/test/java/org/apache/juddi/v3/tck/UDDI_080_SubscriptionIntegrationTest.java?rev=1555300&r1=1555299&r2=1555300&view=diff
==============================================================================
--- juddi/trunk/uddi-tck/src/test/java/org/apache/juddi/v3/tck/UDDI_080_SubscriptionIntegrationTest.java (original)
+++ juddi/trunk/uddi-tck/src/test/java/org/apache/juddi/v3/tck/UDDI_080_SubscriptionIntegrationTest.java Sat Jan  4 00:39:41 2014
@@ -129,6 +129,7 @@ public class UDDI_080_SubscriptionIntegr
 
     @Test
     public void joePublisher() {
+            logger.info("UDDI_080_SubscriptionIntegrationTest joePublisher");
         try {
             tckTModel.saveJoePublisherTmodel(authInfoJoe);
             tckBusiness.saveJoePublisherBusiness(authInfoJoe);

Modified: juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/Clerk.java
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/Clerk.java?rev=1555300&r1=1555299&r2=1555300&view=diff
==============================================================================
--- juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/Clerk.java (original)
+++ juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/Clerk.java Sat Jan  4 00:39:41 2014
@@ -1,81 +1,141 @@
-/*
- * 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.
- *
- */
-package org.apache.juddi.api_v3;
-
-import java.io.Serializable;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlTransient;
-import javax.xml.bind.annotation.XmlType;
-
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "clerk", propOrder = {
-    "name",
-    "node",
-    "publisher",
-    "password"
-})
-public class Clerk implements Serializable {
-
-	@XmlTransient
-	private static final long serialVersionUID = 2723174126266580550L;
-	
-	protected String name;
-	protected Node node;
-	protected String publisher;
-	protected String password;
-	
-	public Clerk() {
-		super();
-	}
-
-	
-	public String getName() {
-		return name;
-	}
-
-	public void setName(String name) {
-		this.name = name;
-	}
-
-	
-	public Node getNode() {
-		return node;
-	}
-
-	public void setNode(Node node) {
-		this.node = node;
-	}
-
-	public String getPublisher() {
-		return publisher;
-	}
-
-	public void setPublisher(String publisher) {
-		this.publisher = publisher;
-	}
-
-	public String getPassword() {
-		return password;
-	}
-
-	public void setPassword(String password) {
-		this.password = password;
-	}
-	
-}
+
+package org.apache.juddi.api_v3;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for clerk complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="clerk">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="node" type="{urn:juddi-apache-org:api_v3}node" minOccurs="0"/>
+ *         &lt;element name="publisher" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="password" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "clerk", propOrder = {
+    "name",
+    "node",
+    "publisher",
+    "password"
+})
+public class Clerk {
+
+    protected String name;
+    protected Node node;
+    protected String publisher;
+    protected String password;
+
+    /**
+     * Gets the value of the name property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getName() {
+        return name;
+    }
+
+    /**
+     * Sets the value of the name property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setName(String value) {
+        this.name = value;
+    }
+
+    /**
+     * Gets the value of the node property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Node }
+     *     
+     */
+    public Node getNode() {
+        return node;
+    }
+
+    /**
+     * Sets the value of the node property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Node }
+     *     
+     */
+    public void setNode(Node value) {
+        this.node = value;
+    }
+
+    /**
+     * Gets the value of the publisher property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getPublisher() {
+        return publisher;
+    }
+
+    /**
+     * Sets the value of the publisher property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setPublisher(String value) {
+        this.publisher = value;
+    }
+
+    /**
+     * Gets the value of the password property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getPassword() {
+        return password;
+    }
+
+    /**
+     * Sets the value of the password property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setPassword(String value) {
+        this.password = value;
+    }
+
+}

Modified: juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClerkDetail.java
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClerkDetail.java?rev=1555300&r1=1555299&r2=1555300&view=diff
==============================================================================
--- juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClerkDetail.java (original)
+++ juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClerkDetail.java Sat Jan  4 00:39:41 2014
@@ -1,54 +1,69 @@
-/*
- * Copyright 2001-2008 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.
- *
- */
-
 
 package org.apache.juddi.api_v3;
 
-import java.io.Serializable;
 import java.util.ArrayList;
 import java.util.List;
 import javax.xml.bind.annotation.XmlAccessType;
 import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlTransient;
+import javax.xml.bind.annotation.XmlElement;
 import javax.xml.bind.annotation.XmlType;
 
 
 /**
- * <p>Java class for publisherDetail type. Specific to juddi.
+ * <p>Java class for clerkDetail complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="clerkDetail">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="clerk" type="{urn:juddi-apache-org:api_v3}clerk" maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
  * 
- * @author <a href="mailto:kstam@apache.org">Kurt T Stam</a>
  */
 @XmlAccessorType(XmlAccessType.FIELD)
 @XmlType(name = "clerkDetail", propOrder = {
     "clerk"
 })
-public class ClerkDetail implements Serializable{
-	
-	@XmlTransient
-	private static final long serialVersionUID = -3428846191158232914L;
-	protected List<Clerk> clerk;
+public class ClerkDetail {
+
+    @XmlElement(nillable = true)
+    protected List<Clerk> clerk;
 
+    /**
+     * Gets the value of the clerk property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the clerk property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getClerk().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link Clerk }
+     * 
+     * 
+     */
     public List<Clerk> getClerk() {
         if (clerk == null) {
-        	clerk = new ArrayList<Clerk>();
+            clerk = new ArrayList<Clerk>();
         }
         return this.clerk;
     }
 
-    
 }
-
\ No newline at end of file

Modified: juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClientSubscriptionInfo.java
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClientSubscriptionInfo.java?rev=1555300&r1=1555299&r2=1555300&view=diff
==============================================================================
--- juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClientSubscriptionInfo.java (original)
+++ juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClientSubscriptionInfo.java Sat Jan  4 00:39:41 2014
@@ -1,36 +1,35 @@
-/*
- * Copyright 2001-2008 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.
- *
- */
 
 package org.apache.juddi.api_v3;
 
-import java.io.Serializable;
-import java.util.Date;
-
 import javax.xml.bind.annotation.XmlAccessType;
 import javax.xml.bind.annotation.XmlAccessorType;
 import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlTransient;
+import javax.xml.bind.annotation.XmlSchemaType;
 import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
 
 
 /**
- * <p>Java class for save_subscriptionInfo type.  Specific to juddi.
+ * <p>Java class for clientSubscriptionInfo complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="clientSubscriptionInfo">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="subscriptionKey" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         &lt;element name="fromClerk" type="{urn:juddi-apache-org:api_v3}clerk"/>
+ *         &lt;element name="toClerk" type="{urn:juddi-apache-org:api_v3}clerk"/>
+ *         &lt;element name="lastModified" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         &lt;element name="lastNotified" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
  * 
- * @author <a href="mailto:kstam@apache.org">Kurt T Stam</a>
  * 
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -38,44 +37,140 @@ import javax.xml.bind.annotation.XmlType
     "subscriptionKey",
     "fromClerk",
     "toClerk",
-    "lastModified"
+    "lastModified",
+    "lastNotified"
 })
-public class ClientSubscriptionInfo implements Serializable{
-	
-	@XmlTransient
-	private static final long serialVersionUID = 6885792665298161949L;
+public class ClientSubscriptionInfo {
+
     @XmlElement(required = true)
     protected String subscriptionKey;
     @XmlElement(required = true)
-    protected Clerk toClerk;
-    @XmlElement(required = true)
     protected Clerk fromClerk;
-    protected Date lastModified;
-    
-	public String getSubscriptionKey() {
-		return subscriptionKey;
-	}
-	public void setSubscriptionKey(String subscriptionKey) {
-		this.subscriptionKey = subscriptionKey;
-	}
-	public Clerk getToClerk() {
-		return toClerk;
-	}
-	public void setToClerk(Clerk toClerk) {
-		this.toClerk = toClerk;
-	}
-	public Clerk getFromClerk() {
-		return fromClerk;
-	}
-	public void setFromClerk(Clerk fromClerk) {
-		this.fromClerk = fromClerk;
-	}
-	public Date getLastModified() {
-		return lastModified;
-	}
-	public void setLastModified(Date lastModified) {
-		this.lastModified = lastModified;
-	}
+    @XmlElement(required = true)
+    protected Clerk toClerk;
+    @XmlSchemaType(name = "dateTime")
+    protected XMLGregorianCalendar lastModified;
+    @XmlSchemaType(name = "dateTime")
+    protected XMLGregorianCalendar lastNotified;
+
+    /**
+     * Gets the value of the subscriptionKey property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getSubscriptionKey() {
+        return subscriptionKey;
+    }
+
+    /**
+     * Sets the value of the subscriptionKey property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setSubscriptionKey(String value) {
+        this.subscriptionKey = value;
+    }
+
+    /**
+     * Gets the value of the fromClerk property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Clerk }
+     *     
+     */
+    public Clerk getFromClerk() {
+        return fromClerk;
+    }
+
+    /**
+     * Sets the value of the fromClerk property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Clerk }
+     *     
+     */
+    public void setFromClerk(Clerk value) {
+        this.fromClerk = value;
+    }
+
+    /**
+     * Gets the value of the toClerk property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Clerk }
+     *     
+     */
+    public Clerk getToClerk() {
+        return toClerk;
+    }
+
+    /**
+     * Sets the value of the toClerk property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Clerk }
+     *     
+     */
+    public void setToClerk(Clerk value) {
+        this.toClerk = value;
+    }
+
+    /**
+     * Gets the value of the lastModified property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link XMLGregorianCalendar }
+     *     
+     */
+    public XMLGregorianCalendar getLastModified() {
+        return lastModified;
+    }
+
+    /**
+     * Sets the value of the lastModified property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link XMLGregorianCalendar }
+     *     
+     */
+    public void setLastModified(XMLGregorianCalendar value) {
+        this.lastModified = value;
+    }
+
+    /**
+     * Gets the value of the lastNotified property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link XMLGregorianCalendar }
+     *     
+     */
+    public XMLGregorianCalendar getLastNotified() {
+        return lastNotified;
+    }
+
+    /**
+     * Sets the value of the lastNotified property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link XMLGregorianCalendar }
+     *     
+     */
+    public void setLastNotified(XMLGregorianCalendar value) {
+        this.lastNotified = value;
+    }
 
 }
-
\ No newline at end of file

Modified: juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClientSubscriptionInfoDetail.java
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClientSubscriptionInfoDetail.java?rev=1555300&r1=1555299&r2=1555300&view=diff
==============================================================================
--- juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClientSubscriptionInfoDetail.java (original)
+++ juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClientSubscriptionInfoDetail.java Sat Jan  4 00:39:41 2014
@@ -1,53 +1,50 @@
-/*
- * 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.
- *
- */
+
 package org.apache.juddi.api_v3;
 
-import java.io.Serializable;
 import java.util.ArrayList;
 import java.util.List;
 import javax.xml.bind.annotation.XmlAccessType;
 import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlTransient;
+import javax.xml.bind.annotation.XmlElement;
 import javax.xml.bind.annotation.XmlType;
 
 
 /**
- * <p>Java class for publisherDetail type. Specific to juddi.
+ * <p>Java class for clientSubscriptionInfoDetail complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="clientSubscriptionInfoDetail">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="clientSubscriptionInfo" type="{urn:juddi-apache-org:api_v3}clientSubscriptionInfo" maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
  * 
- * @author <a href="mailto:jfaath@apache.org">Jeff Faath</a>
  */
 @XmlAccessorType(XmlAccessType.FIELD)
 @XmlType(name = "clientSubscriptionInfoDetail", propOrder = {
     "clientSubscriptionInfo"
 })
-public class ClientSubscriptionInfoDetail implements Serializable{
-	@XmlTransient
-	private static final long serialVersionUID = -409328006334478420L;
-	protected List<ClientSubscriptionInfo> clientSubscriptionInfo;
-   
+public class ClientSubscriptionInfoDetail {
+
+    @XmlElement(nillable = true)
+    protected List<ClientSubscriptionInfo> clientSubscriptionInfo;
 
     /**
-     * Gets the value of the ClientSubscriptionInfo property.
+     * Gets the value of the clientSubscriptionInfo property.
      * 
      * <p>
      * This accessor method returns a reference to the live list,
      * not a snapshot. Therefore any modification you make to the
      * returned list will be present inside the JAXB object.
-     * This is why there is not a <CODE>set</CODE> method for the ClientSubscriptionInfo property.
+     * This is why there is not a <CODE>set</CODE> method for the clientSubscriptionInfo property.
      * 
      * <p>
      * For example, to add a new item, do as follows:
@@ -64,10 +61,9 @@ public class ClientSubscriptionInfoDetai
      */
     public List<ClientSubscriptionInfo> getClientSubscriptionInfo() {
         if (clientSubscriptionInfo == null) {
-        	clientSubscriptionInfo = new ArrayList<ClientSubscriptionInfo>();
+            clientSubscriptionInfo = new ArrayList<ClientSubscriptionInfo>();
         }
         return this.clientSubscriptionInfo;
     }
 
 }
-
\ No newline at end of file

Modified: juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteClientSubscriptionInfo.java
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteClientSubscriptionInfo.java?rev=1555300&r1=1555299&r2=1555300&view=diff
==============================================================================
--- juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteClientSubscriptionInfo.java (original)
+++ juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteClientSubscriptionInfo.java Sat Jan  4 00:39:41 2014
@@ -1,37 +1,32 @@
-/*
- * Copyright 2001-2008 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.
- *
- */
 
 package org.apache.juddi.api_v3;
 
-import java.io.Serializable;
 import java.util.ArrayList;
 import java.util.List;
-
 import javax.xml.bind.annotation.XmlAccessType;
 import javax.xml.bind.annotation.XmlAccessorType;
 import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlTransient;
 import javax.xml.bind.annotation.XmlType;
 
 
 /**
- * <p>Java class for save_subscriptionInfo type.  Specific to juddi.
+ * <p>Java class for delete_clientSubscriptionInfo complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="delete_clientSubscriptionInfo">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="authInfo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="subscriptionKey" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
  * 
- * @author <a href="mailto:kstam@apache.org">Kurt T Stam</a>
  * 
  */
 @XmlAccessorType(XmlAccessType.FIELD)
@@ -39,27 +34,63 @@ import javax.xml.bind.annotation.XmlType
     "authInfo",
     "subscriptionKey"
 })
-public class DeleteClientSubscriptionInfo implements Serializable{
-	
-	@XmlTransient
-	private static final long serialVersionUID = 8973820996268358139L;
-	@XmlElement(namespace = "urn:uddi-org:api_v3")
-	protected String authInfo;
+public class DeleteClientSubscriptionInfo {
+
+    protected String authInfo;
     @XmlElement(required = true)
     protected List<String> subscriptionKey;
-    
-	public String getAuthInfo() {
-		return authInfo;
-	}
-	public void setAuthInfo(String authInfo) {
-		this.authInfo = authInfo;
-	}
-	public List<String> getSubscriptionKey() {
-		if (subscriptionKey==null) {
-			subscriptionKey = new ArrayList<String>();
-		}
-		return subscriptionKey;
-	}
+
+    /**
+     * Gets the value of the authInfo property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getAuthInfo() {
+        return authInfo;
+    }
+
+    /**
+     * Sets the value of the authInfo property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setAuthInfo(String value) {
+        this.authInfo = value;
+    }
+
+    /**
+     * Gets the value of the subscriptionKey property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the subscriptionKey property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getSubscriptionKey().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link String }
+     * 
+     * 
+     */
+    public List<String> getSubscriptionKey() {
+        if (subscriptionKey == null) {
+            subscriptionKey = new ArrayList<String>();
+        }
+        return this.subscriptionKey;
+    }
 
 }
-
\ No newline at end of file

Modified: juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeletePublisher.java
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeletePublisher.java?rev=1555300&r1=1555299&r2=1555300&view=diff
==============================================================================
--- juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeletePublisher.java (original)
+++ juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeletePublisher.java Sat Jan  4 00:39:41 2014
@@ -1,48 +1,42 @@
-/*
- * Copyright 2001-2008 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.
- *
- */
-
 
 package org.apache.juddi.api_v3;
 
-import java.io.Serializable;
 import java.util.ArrayList;
 import java.util.List;
 import javax.xml.bind.annotation.XmlAccessType;
 import javax.xml.bind.annotation.XmlAccessorType;
 import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlTransient;
 import javax.xml.bind.annotation.XmlType;
 
 
 /**
- * <p>Java class for delete_publisher type.  Specific to juddi.
+ * <p>Java class for delete_publisher complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="delete_publisher">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="authInfo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="publisherId" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
  * 
- * @author <a href="mailto:jfaath@apache.org">Jeff Faath</a> 
  */
 @XmlAccessorType(XmlAccessType.FIELD)
 @XmlType(name = "delete_publisher", propOrder = {
     "authInfo",
     "publisherId"
 })
-public class DeletePublisher implements Serializable{
-	@XmlTransient
-	private static final long serialVersionUID = 3984153946328762738L;
-	@XmlElement(namespace = "urn:uddi-org:api_v3")
-	protected String authInfo;
+public class DeletePublisher {
+
+    protected String authInfo;
     @XmlElement(required = true)
     protected List<String> publisherId;
 
@@ -77,7 +71,7 @@ public class DeletePublisher implements 
      * This accessor method returns a reference to the live list,
      * not a snapshot. Therefore any modification you make to the
      * returned list will be present inside the JAXB object.
-     * This is why there is not a <CODE>set</CODE> method for the businessKey property.
+     * This is why there is not a <CODE>set</CODE> method for the publisherId property.
      * 
      * <p>
      * For example, to add a new item, do as follows:
@@ -94,10 +88,9 @@ public class DeletePublisher implements 
      */
     public List<String> getPublisherId() {
         if (publisherId == null) {
-        	publisherId = new ArrayList<String>();
+            publisherId = new ArrayList<String>();
         }
         return this.publisherId;
     }
 
 }
-
\ No newline at end of file

Modified: juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllPublisherDetail.java
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllPublisherDetail.java?rev=1555300&r1=1555299&r2=1555300&view=diff
==============================================================================
--- juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllPublisherDetail.java (original)
+++ juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllPublisherDetail.java Sat Jan  4 00:39:41 2014
@@ -1,46 +1,39 @@
-/*
- * Copyright 2001-2008 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.
- *
- */
-
 
 package org.apache.juddi.api_v3;
 
-import java.io.Serializable;
-
 import javax.xml.bind.annotation.XmlAccessType;
 import javax.xml.bind.annotation.XmlAccessorType;
 import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlTransient;
 import javax.xml.bind.annotation.XmlType;
 
 
 /**
- * <p>Java class for get_allPublisherDetail type. Specific to juddi.
+ * <p>Java class for get_allPublisherDetail complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="get_allPublisherDetail">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element ref="{urn:uddi-org:api_v3}authInfo" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
  * 
- * @author <a href="mailto:jfaath@apache.org">Jeff Faath</a> 
  */
 @XmlAccessorType(XmlAccessType.FIELD)
 @XmlType(name = "get_allPublisherDetail", propOrder = {
     "authInfo"
 })
-public class GetAllPublisherDetail implements Serializable{
-	@XmlTransient
-	private static final long serialVersionUID = 699262934433717857L;
-	@XmlElement(namespace = "urn:uddi-org:api_v3")
-	protected String authInfo;
+public class GetAllPublisherDetail {
+
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected String authInfo;
 
     /**
      * Gets the value of the authInfo property.
@@ -67,4 +60,3 @@ public class GetAllPublisherDetail imple
     }
 
 }
-
\ No newline at end of file

Modified: juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetPublisherDetail.java
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetPublisherDetail.java?rev=1555300&r1=1555299&r2=1555300&view=diff
==============================================================================
--- juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetPublisherDetail.java (original)
+++ juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetPublisherDetail.java Sat Jan  4 00:39:41 2014
@@ -1,48 +1,42 @@
-/*
- * Copyright 2001-2008 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.
- *
- */
-
 
 package org.apache.juddi.api_v3;
 
-import java.io.Serializable;
 import java.util.ArrayList;
 import java.util.List;
 import javax.xml.bind.annotation.XmlAccessType;
 import javax.xml.bind.annotation.XmlAccessorType;
 import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlTransient;
 import javax.xml.bind.annotation.XmlType;
 
 
 /**
- * <p>Java class for get_publisherDetail type. Specific to juddi.
+ * <p>Java class for get_publisher_detail complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="get_publisher_detail">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="authInfo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="publisherId" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
  * 
- * @author <a href="mailto:jfaath@apache.org">Jeff Faath</a> 
  */
 @XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "get_publisherDetail", propOrder = {
+@XmlType(name = "get_publisher_detail", propOrder = {
     "authInfo",
     "publisherId"
 })
-public class GetPublisherDetail implements Serializable{
-	@XmlTransient
-	private static final long serialVersionUID = -4050432824854226040L;
-	@XmlElement(namespace = "urn:uddi-org:api_v3")
-	protected String authInfo;
+public class GetPublisherDetail {
+
+    protected String authInfo;
     @XmlElement(required = true)
     protected List<String> publisherId;
 
@@ -77,7 +71,7 @@ public class GetPublisherDetail implemen
      * This accessor method returns a reference to the live list,
      * not a snapshot. Therefore any modification you make to the
      * returned list will be present inside the JAXB object.
-     * This is why there is not a <CODE>set</CODE> method for the businessKey property.
+     * This is why there is not a <CODE>set</CODE> method for the publisherId property.
      * 
      * <p>
      * For example, to add a new item, do as follows:
@@ -94,10 +88,9 @@ public class GetPublisherDetail implemen
      */
     public List<String> getPublisherId() {
         if (publisherId == null) {
-        	publisherId = new ArrayList<String>();
+            publisherId = new ArrayList<String>();
         }
         return this.publisherId;
     }
 
 }
-
\ No newline at end of file

Modified: juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/Node.java
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/Node.java?rev=1555300&r1=1555299&r2=1555300&view=diff
==============================================================================
--- juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/Node.java (original)
+++ juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/Node.java Sat Jan  4 00:39:41 2014
@@ -1,166 +1,438 @@
-/*
- * 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.
- *
- */
-/**
- * <p>Java class for Node type.  Specific to juddi.
- * 
- * @author <a href="mailto:kstam@apache.org">Kurt T Stam</a> 
- * 
- */
-package org.apache.juddi.api_v3;
-
-import java.io.Serializable;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlTransient;
-import javax.xml.bind.annotation.XmlType;
-
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "node", propOrder = {
-	"name",
-	"clientName",
-    "description",
-    "custodyTransferUrl",
-    "inquiryUrl",
-    "publishUrl",
-    "securityUrl",
-	"subscriptionUrl",
-	"subscriptionListenerUrl",
-	"replicationUrl",
-	"juddiApiUrl",
-	"proxyTransport",
-	"factoryInitial",
-	"factoryURLPkgs",
-	"factoryNamingProvider"
-})
-public class Node implements Serializable{
-	
-	@XmlTransient
-	private static final long serialVersionUID = -4601378453000384721L;
-	private String name;
-	private String clientName;
-	private String description;
-	private String custodyTransferUrl;
-	private String inquiryUrl;
-	private String publishUrl;
-	private String securityUrl;
-	private String subscriptionUrl;
-	private String subscriptionListenerUrl;
-	private String replicationUrl;
-	private String juddiApiUrl;
-	private String proxyTransport;
-	private String factoryInitial;
-	private String factoryURLPkgs;
-	private String factoryNamingProvider;
-	
-	
-	
-	public String getName() {
-		return name;
-	}
-	public void setName(String name) {
-		this.name = name;
-	}
-	
-	public String getClientName() {
-		return clientName;
-	}
-	public void setClientName(String clientName) {
-		this.clientName = clientName;
-	}
-	public String getDescription() {
-		return description;
-	}
-	public void setDescription(String description) {
-		this.description = description;
-	}
-	public String getCustodyTransferUrl() {
-		return custodyTransferUrl;
-	}
-	public void setCustodyTransferUrl(String custodyTransferUrl) {
-		this.custodyTransferUrl = custodyTransferUrl;
-	}
-	public String getInquiryUrl() {
-		return inquiryUrl;
-	}
-	public void setInquiryUrl(String inquiryUrl) {
-		this.inquiryUrl = inquiryUrl;
-	}
-	public String getPublishUrl() {
-		return publishUrl;
-	}
-	public void setPublishUrl(String publishUrl) {
-		this.publishUrl = publishUrl;
-	}
-	public String getSecurityUrl() {
-		return securityUrl;
-	}
-	public void setSecurityUrl(String securityUrl) {
-		this.securityUrl = securityUrl;
-	}
-	public String getSubscriptionUrl() {
-		return subscriptionUrl;
-	}
-	public void setSubscriptionUrl(String subscriptionUrl) {
-		this.subscriptionUrl = subscriptionUrl;
-	}
-	public String getProxyTransport() {
-		return proxyTransport;
-	}
-	public void setProxyTransport(String proxyTransport) {
-		this.proxyTransport = proxyTransport;
-	}
-	public String getJuddiApiUrl() {
-		return juddiApiUrl;
-	}
-	public void setJuddiApiUrl(String juddiApiUrl) {
-		this.juddiApiUrl = juddiApiUrl;
-	}
-	public String getSubscriptionListenerUrl() {
-		return subscriptionListenerUrl;
-	}
-	public void setSubscriptionListenerUrl(String subscriptionListenerUrl) {
-		this.subscriptionListenerUrl = subscriptionListenerUrl;
-	}
-	public String getReplicationUrl() {
-		return replicationUrl;
-	}
-	public void setReplicationUrl(String replicationUrl) {
-		this.replicationUrl = replicationUrl;
-	}
-	public String getFactoryInitial() {
-		return factoryInitial;
-	}
-	public void setFactoryInitial(String factoryInitial) {
-		this.factoryInitial = factoryInitial;
-	}
-	public String getFactoryURLPkgs() {
-		return factoryURLPkgs;
-	}
-	public void setFactoryURLPkgs(String factoryURLPkgs) {
-		this.factoryURLPkgs = factoryURLPkgs;
-	}
-	public String getFactoryNamingProvider() {
-		return factoryNamingProvider;
-	}
-	public void setFactoryNamingProvider(String factoryNamingProvider) {
-		this.factoryNamingProvider = factoryNamingProvider;
-	}
-
-	
-	
-}
+
+package org.apache.juddi.api_v3;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for node complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="node">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="clientName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="custodyTransferUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="inquiryUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="publishUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="securityUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="subscriptionUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="subscriptionListenerUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="replicationUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="juddiApiUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="proxyTransport" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="factoryInitial" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="factoryURLPkgs" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="factoryNamingProvider" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "node", propOrder = {
+    "name",
+    "clientName",
+    "description",
+    "custodyTransferUrl",
+    "inquiryUrl",
+    "publishUrl",
+    "securityUrl",
+    "subscriptionUrl",
+    "subscriptionListenerUrl",
+    "replicationUrl",
+    "juddiApiUrl",
+    "proxyTransport",
+    "factoryInitial",
+    "factoryURLPkgs",
+    "factoryNamingProvider"
+})
+public class Node {
+
+    protected String name;
+    protected String clientName;
+    protected String description;
+    protected String custodyTransferUrl;
+    protected String inquiryUrl;
+    protected String publishUrl;
+    protected String securityUrl;
+    protected String subscriptionUrl;
+    protected String subscriptionListenerUrl;
+    protected String replicationUrl;
+    protected String juddiApiUrl;
+    protected String proxyTransport;
+    protected String factoryInitial;
+    protected String factoryURLPkgs;
+    protected String factoryNamingProvider;
+
+    /**
+     * Gets the value of the name property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getName() {
+        return name;
+    }
+
+    /**
+     * Sets the value of the name property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setName(String value) {
+        this.name = value;
+    }
+
+    /**
+     * Gets the value of the clientName property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getClientName() {
+        return clientName;
+    }
+
+    /**
+     * Sets the value of the clientName property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setClientName(String value) {
+        this.clientName = value;
+    }
+
+    /**
+     * Gets the value of the description property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getDescription() {
+        return description;
+    }
+
+    /**
+     * Sets the value of the description property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setDescription(String value) {
+        this.description = value;
+    }
+
+    /**
+     * Gets the value of the custodyTransferUrl property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getCustodyTransferUrl() {
+        return custodyTransferUrl;
+    }
+
+    /**
+     * Sets the value of the custodyTransferUrl property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setCustodyTransferUrl(String value) {
+        this.custodyTransferUrl = value;
+    }
+
+    /**
+     * Gets the value of the inquiryUrl property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getInquiryUrl() {
+        return inquiryUrl;
+    }
+
+    /**
+     * Sets the value of the inquiryUrl property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setInquiryUrl(String value) {
+        this.inquiryUrl = value;
+    }
+
+    /**
+     * Gets the value of the publishUrl property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getPublishUrl() {
+        return publishUrl;
+    }
+
+    /**
+     * Sets the value of the publishUrl property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setPublishUrl(String value) {
+        this.publishUrl = value;
+    }
+
+    /**
+     * Gets the value of the securityUrl property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getSecurityUrl() {
+        return securityUrl;
+    }
+
+    /**
+     * Sets the value of the securityUrl property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setSecurityUrl(String value) {
+        this.securityUrl = value;
+    }
+
+    /**
+     * Gets the value of the subscriptionUrl property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getSubscriptionUrl() {
+        return subscriptionUrl;
+    }
+
+    /**
+     * Sets the value of the subscriptionUrl property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setSubscriptionUrl(String value) {
+        this.subscriptionUrl = value;
+    }
+
+    /**
+     * Gets the value of the subscriptionListenerUrl property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getSubscriptionListenerUrl() {
+        return subscriptionListenerUrl;
+    }
+
+    /**
+     * Sets the value of the subscriptionListenerUrl property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setSubscriptionListenerUrl(String value) {
+        this.subscriptionListenerUrl = value;
+    }
+
+    /**
+     * Gets the value of the replicationUrl property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getReplicationUrl() {
+        return replicationUrl;
+    }
+
+    /**
+     * Sets the value of the replicationUrl property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setReplicationUrl(String value) {
+        this.replicationUrl = value;
+    }
+
+    /**
+     * Gets the value of the juddiApiUrl property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getJuddiApiUrl() {
+        return juddiApiUrl;
+    }
+
+    /**
+     * Sets the value of the juddiApiUrl property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setJuddiApiUrl(String value) {
+        this.juddiApiUrl = value;
+    }
+
+    /**
+     * Gets the value of the proxyTransport property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getProxyTransport() {
+        return proxyTransport;
+    }
+
+    /**
+     * Sets the value of the proxyTransport property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setProxyTransport(String value) {
+        this.proxyTransport = value;
+    }
+
+    /**
+     * Gets the value of the factoryInitial property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getFactoryInitial() {
+        return factoryInitial;
+    }
+
+    /**
+     * Sets the value of the factoryInitial property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setFactoryInitial(String value) {
+        this.factoryInitial = value;
+    }
+
+    /**
+     * Gets the value of the factoryURLPkgs property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getFactoryURLPkgs() {
+        return factoryURLPkgs;
+    }
+
+    /**
+     * Sets the value of the factoryURLPkgs property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setFactoryURLPkgs(String value) {
+        this.factoryURLPkgs = value;
+    }
+
+    /**
+     * Gets the value of the factoryNamingProvider property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getFactoryNamingProvider() {
+        return factoryNamingProvider;
+    }
+
+    /**
+     * Sets the value of the factoryNamingProvider property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setFactoryNamingProvider(String value) {
+        this.factoryNamingProvider = value;
+    }
+
+}

Modified: juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/NodeDetail.java
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/NodeDetail.java?rev=1555300&r1=1555299&r2=1555300&view=diff
==============================================================================
--- juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/NodeDetail.java (original)
+++ juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/NodeDetail.java Sat Jan  4 00:39:41 2014
@@ -1,53 +1,69 @@
-/*
- * Copyright 2001-2008 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.
- *
- */
-
 
 package org.apache.juddi.api_v3;
 
-import java.io.Serializable;
 import java.util.ArrayList;
 import java.util.List;
 import javax.xml.bind.annotation.XmlAccessType;
 import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlTransient;
+import javax.xml.bind.annotation.XmlElement;
 import javax.xml.bind.annotation.XmlType;
 
 
 /**
- * <p>Java class for publisherDetail type. Specific to juddi.
+ * <p>Java class for nodeDetail complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="nodeDetail">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="node" type="{urn:juddi-apache-org:api_v3}node" maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
  * 
- * @author <a href="mailto:kstam@apache.org">Kurt T Stam</a>
  */
 @XmlAccessorType(XmlAccessType.FIELD)
 @XmlType(name = "nodeDetail", propOrder = {
     "node"
 })
-public class NodeDetail implements Serializable{
-	
-	@XmlTransient
-	private static final long serialVersionUID = -2223079896071967732L;
-	protected List<Node> node;
+public class NodeDetail {
+
+    @XmlElement(nillable = true)
+    protected List<Node> node;
 
+    /**
+     * Gets the value of the node property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the node property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getNode().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link Node }
+     * 
+     * 
+     */
     public List<Node> getNode() {
         if (node == null) {
-        	node = new ArrayList<Node>();
+            node = new ArrayList<Node>();
         }
         return this.node;
     }
 
 }
-
\ No newline at end of file

Modified: juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/ObjectFactory.java
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/ObjectFactory.java?rev=1555300&r1=1555299&r2=1555300&view=diff
==============================================================================
--- juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/ObjectFactory.java (original)
+++ juddi/trunk/uddi-ws/src/main/java/org/apache/juddi/api_v3/ObjectFactory.java Sat Jan  4 00:39:41 2014
@@ -1,20 +1,3 @@
-/*
- * Copyright 2001-2008 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.
- *
- */
-
 
 package org.apache.juddi.api_v3;
 
@@ -22,11 +5,13 @@ import javax.xml.bind.JAXBElement;
 import javax.xml.bind.annotation.XmlElementDecl;
 import javax.xml.bind.annotation.XmlRegistry;
 import javax.xml.namespace.QName;
+import org.uddi.api_v3.DeleteTModel;
 
 
 /**
  * This object contains factory methods for each 
- * Java content interface and Java element interface. 
+ * Java content interface and Java element interface 
+ * generated in the org.apache.juddi.api_v3 package. 
  * <p>An ObjectFactory allows you to programatically 
  * construct new instances of the Java representation 
  * for XML content. The Java representation of XML 
@@ -36,86 +21,91 @@ import javax.xml.namespace.QName;
  * groups.  Factory methods for each of these are 
  * provided in this class.
  * 
- * This object was copied from the UDDI generated package 
- * and hand-edited to fit the juddi specific Publisher structures.
- * 
- * @author <a href="mailto:jfaath@apache.org">Jeff Faath</a>
  */
 @XmlRegistry
 public class ObjectFactory {
-	
-	private final static QName _SaveClerk_QNAME = new QName("urn:juddi-apache-org:api_v3", "save_clerk");
-	private final static QName _SaveNode_QNAME = new QName("urn:juddi-apache-org:api_v3", "save_node");
-    private final static QName _SavePublisher_QNAME = new QName("urn:juddi-apache-org:api_v3", "save_publisher");
+
     private final static QName _DeletePublisher_QNAME = new QName("urn:juddi-apache-org:api_v3", "delete_publisher");
-    private final static QName _SaveClientSubscriptionInfo_QNAME = new QName("urn:juddi-apache-org:api_v3", "save_clientSubscriptionInfo");
-    private final static QName _DeleteClientSubscriptionInfo_QNAME = new QName("urn:juddi-apache-org:api_v3", "delete_clientSubscriptionInfo");
-    
-    private final static QName _Publisher_QNAME = new QName("urn:juddi-apache-org:api_v3", "publisher");
-   
-    private final static QName _ClerkDetail_QNAME = new QName("urn:juddi-apache-org:api_v3", "clerkDetail");
-    private final static QName _NodeDetail_QNAME = new QName("urn:juddi-apache-org:api_v3", "nodeDetail");
-    private final static QName _PublisherDetail_QNAME = new QName("urn:juddi-apache-org:api_v3", "publisherDetail");
-    private final static QName _GetPublisherDetail_QNAME = new QName("urn:juddi-apache-org:api_v3", "get_publisherDetail");
     private final static QName _GetAllPublisherDetail_QNAME = new QName("urn:juddi-apache-org:api_v3", "get_allPublisherDetail");
+    private final static QName _SaveClerkRequest_QNAME = new QName("urn:juddi-apache-org:api_v3", "save_ClerkRequest");
+    private final static QName _DeleteClientSubscriptionInfo_QNAME = new QName("urn:juddi-apache-org:api_v3", "delete_ClientSubscriptionInfo");
+    private final static QName _SaveNodeRequest_QNAME = new QName("urn:juddi-apache-org:api_v3", "save_NodeRequest");
     private final static QName _SyncSubscription_QNAME = new QName("urn:juddi-apache-org:api_v3", "sync_subscription");
-    private final static QName _ClientSubscriptionInfoDetail_QNAME = new QName("urn:juddi-apache-org:api_v3", "clientSubscriptionInfoDetail");
-    private final static QName _SyncSubscriptionDetail_QNAME = new QName("urn:juddi-apache-org:api_v3", "syncSubscriptionDetail");
+    private final static QName _SaveNodeResponse_QNAME = new QName("urn:juddi-apache-org:api_v3", "save_NodeResponse");
+    private final static QName _SaveClientSubscriptionInfoResponse_QNAME = new QName("urn:juddi-apache-org:api_v3", "save_ClientSubscriptionInfoResponse");
+    private final static QName _SyncSubscriptionDetail_QNAME = new QName("urn:juddi-apache-org:api_v3", "sync_subscriptionDetail");
+    private final static QName _PublisherDetail_QNAME = new QName("urn:juddi-apache-org:api_v3", "publisherDetail");
+    private final static QName _SaveClientSubscriptionInfoRequest_QNAME = new QName("urn:juddi-apache-org:api_v3", "save_ClientSubscriptionInfoRequest");
+    private final static QName _Publisher_QNAME = new QName("urn:juddi-apache-org:api_v3", "publisher");
+    private final static QName _InvokeSyncSubscription_QNAME = new QName("urn:juddi-apache-org:api_v3", "invoke_SyncSubscription");
+    private final static QName _AdminDeleteTmodel_QNAME = new QName("urn:juddi-apache-org:api_v3", "adminDelete_tmodel");
+    private final static QName _SavePublisherResponse_QNAME = new QName("urn:juddi-apache-org:api_v3", "save_publisherResponse");
+    private final static QName _SaveClerkResponse_QNAME = new QName("urn:juddi-apache-org:api_v3", "save_ClerkResponse");
+    private final static QName _GetPublisherDetail_QNAME = new QName("urn:juddi-apache-org:api_v3", "get_publisherDetail");
+    private final static QName _SavePublisher_QNAME = new QName("urn:juddi-apache-org:api_v3", "save_publisher");
+    private final static QName _InvokeSyncSubscriptionResponse_QNAME = new QName("urn:juddi-apache-org:api_v3", "invoke_SyncSubscriptionResponse");
 
-//    
-//    /**
-//     * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.apache.juddi.api_v3
-//     * 
-//     */
+    /**
+     * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.apache.juddi.api_v3
+     * 
+     */
     public ObjectFactory() {
     }
 
     /**
+     * Create an instance of {@link DeleteClientSubscriptionInfo }
+     * 
+     */
+    public DeleteClientSubscriptionInfo createDeleteClientSubscriptionInfo() {
+        return new DeleteClientSubscriptionInfo();
+    }
+
+    /**
      * Create an instance of {@link SaveClerk }
      * 
      */
     public SaveClerk createSaveClerk() {
         return new SaveClerk();
     }
-    
+
     /**
-     * Create an instance of {@link SaveNode }
+     * Create an instance of {@link ClientSubscriptionInfoDetail }
      * 
      */
-    public SaveNode createSaveNode() {
-        return new SaveNode();
+    public ClientSubscriptionInfoDetail createClientSubscriptionInfoDetail() {
+        return new ClientSubscriptionInfoDetail();
     }
-    
+
     /**
-     * Create an instance of {@link SavePublisher }
+     * Create an instance of {@link NodeDetail }
      * 
      */
-    public SavePublisher createSavePublisher() {
-        return new SavePublisher();
+    public NodeDetail createNodeDetail() {
+        return new NodeDetail();
     }
-    
+
     /**
-     * Create an instance of {@link SaveClientSubscriptionInfo }
+     * Create an instance of {@link GetPublisherDetail }
      * 
      */
-    public SaveClientSubscriptionInfo createSaveClientSubscriptionInfo() {
-        return new SaveClientSubscriptionInfo();
+    public GetPublisherDetail createGetPublisherDetail() {
+        return new GetPublisherDetail();
     }
 
     /**
-     * Create an instance of {@link DeletePublisher }
+     * Create an instance of {@link ClerkDetail }
      * 
      */
-    public DeletePublisher createDeletePublisher() {
-        return new DeletePublisher();
+    public ClerkDetail createClerkDetail() {
+        return new ClerkDetail();
     }
-    
+
     /**
-     * Create an instance of {@link DeleteClientSubscriptionInfo }
+     * Create an instance of {@link GetAllPublisherDetail }
      * 
      */
-    public DeleteClientSubscriptionInfo createDeleteClientSubscriptionInfo() {
-        return new DeleteClientSubscriptionInfo();
+    public GetAllPublisherDetail createGetAllPublisherDetail() {
+        return new GetAllPublisherDetail();
     }
 
     /**
@@ -125,16 +115,15 @@ public class ObjectFactory {
     public Publisher createPublisher() {
         return new Publisher();
     }
-    
- 
+
     /**
-     * Create an instance of {@link ClerkDetail }
+     * Create an instance of {@link SaveClientSubscriptionInfo }
      * 
      */
-    public ClerkDetail createClerkDetail() {
-        return new ClerkDetail();
+    public SaveClientSubscriptionInfo createSaveClientSubscriptionInfo() {
+        return new SaveClientSubscriptionInfo();
     }
-    
+
     /**
      * Create an instance of {@link PublisherDetail }
      * 
@@ -144,82 +133,85 @@ public class ObjectFactory {
     }
 
     /**
-     * Create an instance of {@link GetPublisherDetail }
+     * Create an instance of {@link SyncSubscription }
      * 
      */
-    public GetPublisherDetail createGetPublisherDetail() {
-        return new GetPublisherDetail();
+    public SyncSubscription createSyncSubscription() {
+        return new SyncSubscription();
     }
-    
+
     /**
-     * Create an instance of {@link GetPublisherDetail }
+     * Create an instance of {@link SyncSubscriptionDetailResponse }
      * 
      */
-    public GetAllPublisherDetail createGetAllPublisherDetail() {
-        return new GetAllPublisherDetail();
+    public SyncSubscriptionDetailResponse createSyncSubscriptionDetailResponse() {
+        return new SyncSubscriptionDetailResponse();
     }
 
     /**
-     * Create an instance of {@link GetPublisherDetail }
+     * Create an instance of {@link SyncSubscriptionRequest }
      * 
      */
-    public SyncSubscription createSyncSubscription() {
-        return new SyncSubscription();
+    public SyncSubscriptionRequest createSyncSubscriptionRequest() {
+        return new SyncSubscriptionRequest();
     }
-    
+
     /**
-     * Create an instance of {@link GetPublisherDetail }
+     * Create an instance of {@link SavePublisher }
      * 
      */
-    public SyncSubscriptionDetail createSyncSubscriptionDetail() {
-        return new SyncSubscriptionDetail();
+    public SavePublisher createSavePublisher() {
+        return new SavePublisher();
     }
-    
+
     /**
-     * Create an instance of {@link ClientSubscriptionInfoDetail }
+     * Create an instance of {@link DeletePublisher }
      * 
      */
-    public ClientSubscriptionInfoDetail createClientSubscriptionInfoDetail() {
-        return new ClientSubscriptionInfoDetail();
+    public DeletePublisher createDeletePublisher() {
+        return new DeletePublisher();
     }
 
-    
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link SavePublisher }{@code >}}
+     * Create an instance of {@link SyncSubscriptionDetail }
      * 
      */
-    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "save_clerk")
-    public JAXBElement<SaveClerk> createSaveClerk(SaveClerk value) {
-        return new JAXBElement<SaveClerk>(_SaveClerk_QNAME, SaveClerk.class, null, value);
+    public SyncSubscriptionDetail createSyncSubscriptionDetail() {
+        return new SyncSubscriptionDetail();
     }
-    
+
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link SavePublisher }{@code >}}
+     * Create an instance of {@link SaveNode }
      * 
      */
-    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "save_node")
-    public JAXBElement<SaveNode> createSaveNode(SaveNode value) {
-        return new JAXBElement<SaveNode>(_SaveNode_QNAME, SaveNode.class, null, value);
+    public SaveNode createSaveNode() {
+        return new SaveNode();
     }
-    
+
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link SavePublisher }{@code >}}
+     * Create an instance of {@link ClientSubscriptionInfo }
      * 
      */
-    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "save_publisher")
-    public JAXBElement<SavePublisher> createSavePublisher(SavePublisher value) {
-        return new JAXBElement<SavePublisher>(_SavePublisher_QNAME, SavePublisher.class, null, value);
+    public ClientSubscriptionInfo createClientSubscriptionInfo() {
+        return new ClientSubscriptionInfo();
     }
 
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link SavePublisher }{@code >}}
+     * Create an instance of {@link Node }
      * 
      */
-    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "save_clientSubscriptionInfo")
-    public JAXBElement<SaveClientSubscriptionInfo> createSaveClientSubscriptionInfo(SaveClientSubscriptionInfo value) {
-        return new JAXBElement<SaveClientSubscriptionInfo>(_SaveClientSubscriptionInfo_QNAME, SaveClientSubscriptionInfo.class, null, value);
+    public Node createNode() {
+        return new Node();
     }
-    
+
+    /**
+     * Create an instance of {@link Clerk }
+     * 
+     */
+    public Clerk createClerk() {
+        return new Clerk();
+    }
+
     /**
      * Create an instance of {@link JAXBElement }{@code <}{@link DeletePublisher }{@code >}}
      * 
@@ -228,43 +220,79 @@ public class ObjectFactory {
     public JAXBElement<DeletePublisher> createDeletePublisher(DeletePublisher value) {
         return new JAXBElement<DeletePublisher>(_DeletePublisher_QNAME, DeletePublisher.class, null, value);
     }
-    
+
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link SavePublisher }{@code >}}
+     * Create an instance of {@link JAXBElement }{@code <}{@link GetAllPublisherDetail }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "get_allPublisherDetail")
+    public JAXBElement<GetAllPublisherDetail> createGetAllPublisherDetail(GetAllPublisherDetail value) {
+        return new JAXBElement<GetAllPublisherDetail>(_GetAllPublisherDetail_QNAME, GetAllPublisherDetail.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link SaveClerk }{@code >}}
      * 
      */
-    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "delete_clientSubscriptionInfo")
+    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "save_ClerkRequest")
+    public JAXBElement<SaveClerk> createSaveClerkRequest(SaveClerk value) {
+        return new JAXBElement<SaveClerk>(_SaveClerkRequest_QNAME, SaveClerk.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link DeleteClientSubscriptionInfo }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "delete_ClientSubscriptionInfo")
     public JAXBElement<DeleteClientSubscriptionInfo> createDeleteClientSubscriptionInfo(DeleteClientSubscriptionInfo value) {
         return new JAXBElement<DeleteClientSubscriptionInfo>(_DeleteClientSubscriptionInfo_QNAME, DeleteClientSubscriptionInfo.class, null, value);
     }
 
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link Publisher }{@code >}}
+     * Create an instance of {@link JAXBElement }{@code <}{@link SaveNode }{@code >}}
      * 
      */
-    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "publisher")
-    public JAXBElement<Publisher> createPublisher(Publisher value) {
-        return new JAXBElement<Publisher>(_Publisher_QNAME, Publisher.class, null, value);
+    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "save_NodeRequest")
+    public JAXBElement<SaveNode> createSaveNodeRequest(SaveNode value) {
+        return new JAXBElement<SaveNode>(_SaveNodeRequest_QNAME, SaveNode.class, null, value);
     }
-    
+
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link PublisherDetail }{@code >}}
+     * Create an instance of {@link JAXBElement }{@code <}{@link SyncSubscription }{@code >}}
      * 
      */
-    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "clerkDetail")
-    public JAXBElement<ClerkDetail> createClerkDetail(ClerkDetail value) {
-        return new JAXBElement<ClerkDetail>(_ClerkDetail_QNAME, ClerkDetail.class, null, value);
+    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "sync_subscription")
+    public JAXBElement<SyncSubscription> createSyncSubscription(SyncSubscription value) {
+        return new JAXBElement<SyncSubscription>(_SyncSubscription_QNAME, SyncSubscription.class, null, value);
     }
-    
+
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link PublisherDetail }{@code >}}
+     * Create an instance of {@link JAXBElement }{@code <}{@link NodeDetail }{@code >}}
      * 
      */
-    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "nodeDetail")
-    public JAXBElement<NodeDetail> createNodeDetail(NodeDetail value) {
-        return new JAXBElement<NodeDetail>(_NodeDetail_QNAME, NodeDetail.class, null, value);
+    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "save_NodeResponse")
+    public JAXBElement<NodeDetail> createSaveNodeResponse(NodeDetail value) {
+        return new JAXBElement<NodeDetail>(_SaveNodeResponse_QNAME, NodeDetail.class, null, value);
     }
-    
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ClientSubscriptionInfoDetail }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "save_ClientSubscriptionInfoResponse")
+    public JAXBElement<ClientSubscriptionInfoDetail> createSaveClientSubscriptionInfoResponse(ClientSubscriptionInfoDetail value) {
+        return new JAXBElement<ClientSubscriptionInfoDetail>(_SaveClientSubscriptionInfoResponse_QNAME, ClientSubscriptionInfoDetail.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link SyncSubscriptionDetail }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "sync_subscriptionDetail")
+    public JAXBElement<SyncSubscriptionDetail> createSyncSubscriptionDetail(SyncSubscriptionDetail value) {
+        return new JAXBElement<SyncSubscriptionDetail>(_SyncSubscriptionDetail_QNAME, SyncSubscriptionDetail.class, null, value);
+    }
+
     /**
      * Create an instance of {@link JAXBElement }{@code <}{@link PublisherDetail }{@code >}}
      * 
@@ -273,58 +301,86 @@ public class ObjectFactory {
     public JAXBElement<PublisherDetail> createPublisherDetail(PublisherDetail value) {
         return new JAXBElement<PublisherDetail>(_PublisherDetail_QNAME, PublisherDetail.class, null, value);
     }
-    
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link SaveClientSubscriptionInfo }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "save_ClientSubscriptionInfoRequest")
+    public JAXBElement<SaveClientSubscriptionInfo> createSaveClientSubscriptionInfoRequest(SaveClientSubscriptionInfo value) {
+        return new JAXBElement<SaveClientSubscriptionInfo>(_SaveClientSubscriptionInfoRequest_QNAME, SaveClientSubscriptionInfo.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link Publisher }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "publisher")
+    public JAXBElement<Publisher> createPublisher(Publisher value) {
+        return new JAXBElement<Publisher>(_Publisher_QNAME, Publisher.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link SyncSubscriptionRequest }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "invoke_SyncSubscription")
+    public JAXBElement<SyncSubscriptionRequest> createInvokeSyncSubscription(SyncSubscriptionRequest value) {
+        return new JAXBElement<SyncSubscriptionRequest>(_InvokeSyncSubscription_QNAME, SyncSubscriptionRequest.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link DeleteTModel }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "adminDelete_tmodel")
+    public JAXBElement<DeleteTModel> createAdminDeleteTmodel(DeleteTModel value) {
+        return new JAXBElement<DeleteTModel>(_AdminDeleteTmodel_QNAME, DeleteTModel.class, null, value);
+    }
+
     /**
      * Create an instance of {@link JAXBElement }{@code <}{@link PublisherDetail }{@code >}}
      * 
      */
-    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "clientSubscriptionInfoDetail")
-    public JAXBElement<ClientSubscriptionInfoDetail> createClientSubscriptionInfoDetail(ClientSubscriptionInfoDetail value) {
-        return new JAXBElement<ClientSubscriptionInfoDetail>(_ClientSubscriptionInfoDetail_QNAME, ClientSubscriptionInfoDetail.class, null, value);
+    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "save_publisherResponse")
+    public JAXBElement<PublisherDetail> createSavePublisherResponse(PublisherDetail value) {
+        return new JAXBElement<PublisherDetail>(_SavePublisherResponse_QNAME, PublisherDetail.class, null, value);
     }
-    
+
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link GetPublisherDetail }{@code >}}
+     * Create an instance of {@link JAXBElement }{@code <}{@link ClerkDetail }{@code >}}
      * 
      */
-    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "get_publisherDetail")
-    public JAXBElement<GetPublisherDetail> createGetPublisherDetail(GetPublisherDetail value) {
-        return new JAXBElement<GetPublisherDetail>(_GetPublisherDetail_QNAME, GetPublisherDetail.class, null, value);
+    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "save_ClerkResponse")
+    public JAXBElement<ClerkDetail> createSaveClerkResponse(ClerkDetail value) {
+        return new JAXBElement<ClerkDetail>(_SaveClerkResponse_QNAME, ClerkDetail.class, null, value);
     }
-    
+
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link GetAllPublisherDetail }{@code >}}
+     * Create an instance of {@link JAXBElement }{@code <}{@link GetPublisherDetail }{@code >}}
      * 
      */
-    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "get_allPublisherDetail")
-    public JAXBElement<GetAllPublisherDetail> createGetAllPublisherDetail(GetAllPublisherDetail value) {
-        return new JAXBElement<GetAllPublisherDetail>(_GetAllPublisherDetail_QNAME, GetAllPublisherDetail.class, null, value);
+    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "get_publisherDetail")
+    public JAXBElement<GetPublisherDetail> createGetPublisherDetail(GetPublisherDetail value) {
+        return new JAXBElement<GetPublisherDetail>(_GetPublisherDetail_QNAME, GetPublisherDetail.class, null, value);
     }
 
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link SyncSubscription }{@code >}}
+     * Create an instance of {@link JAXBElement }{@code <}{@link SavePublisher }{@code >}}
      * 
      */
-    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "sync_subscription")
-    public JAXBElement<SyncSubscription> createSyncSubscription(SyncSubscription value) {
-        return new JAXBElement<SyncSubscription>(_SyncSubscription_QNAME, SyncSubscription.class, null, value);
+    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "save_publisher")
+    public JAXBElement<SavePublisher> createSavePublisher(SavePublisher value) {
+        return new JAXBElement<SavePublisher>(_SavePublisher_QNAME, SavePublisher.class, null, value);
     }
-    
+
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link SyncSubscription }{@code >}}
+     * Create an instance of {@link JAXBElement }{@code <}{@link SyncSubscriptionDetailResponse }{@code >}}
      * 
      */
-    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "sync_subscriptionDetail")
-    public JAXBElement<SyncSubscriptionDetail> createSyncSubscription(SyncSubscriptionDetail value) {
-        return new JAXBElement<SyncSubscriptionDetail>(_SyncSubscriptionDetail_QNAME, SyncSubscriptionDetail.class, null, value);
+    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "invoke_SyncSubscriptionResponse")
+    public JAXBElement<SyncSubscriptionDetailResponse> createInvokeSyncSubscriptionResponse(SyncSubscriptionDetailResponse value) {
+        return new JAXBElement<SyncSubscriptionDetailResponse>(_InvokeSyncSubscriptionResponse_QNAME, SyncSubscriptionDetailResponse.class, null, value);
     }
-    
-//    /**
-//     * Create an instance of {@link JAXBElement }{@code <}{@link SyncSubscriptionDetail }{@code >}}
-//     * 
-//     */
-//    @XmlElementDecl(namespace = "urn:juddi-apache-org:api_v3", name = "sync_subscriptionDetail")
-//    public JAXBElement<SyncSubscriptionDetail> createGetAllSyncSubsriptionDetail(SyncSubscriptionDetail value) {
-//        return new JAXBElement<SyncSubscriptionDetail>(_SyncSubscriptionDetail_QNAME, SyncSubscriptionDetail.class, null, value);
-//    }   
+
 }



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