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 2013/12/02 01:51:48 UTC

svn commit: r1546875 [7/10] - in /juddi/branches/juddi-3.3.x: ./ juddi-client/src/main/java/org/apache/juddi/v3/client/config/ juddi-console/ juddi-core-openjpa/ juddi-core/src/main/java/org/apache/juddi/ juddi-core/src/main/java/org/apache/juddi/api/i...

Modified: juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClerkDetail.java
URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClerkDetail.java?rev=1546875&r1=1546874&r2=1546875&view=diff
==============================================================================
--- juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClerkDetail.java (original)
+++ juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClerkDetail.java Mon Dec  2 00:51:47 2013
@@ -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/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClientSubscriptionInfo.java
URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClientSubscriptionInfo.java?rev=1546875&r1=1546874&r2=1546875&view=diff
==============================================================================
--- juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClientSubscriptionInfo.java (original)
+++ juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClientSubscriptionInfo.java Mon Dec  2 00:51:47 2013
@@ -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/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClientSubscriptionInfoDetail.java
URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClientSubscriptionInfoDetail.java?rev=1546875&r1=1546874&r2=1546875&view=diff
==============================================================================
--- juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClientSubscriptionInfoDetail.java (original)
+++ juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/ClientSubscriptionInfoDetail.java Mon Dec  2 00:51:47 2013
@@ -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

Added: juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteClerk.java
URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteClerk.java?rev=1546875&view=auto
==============================================================================
--- juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteClerk.java (added)
+++ juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteClerk.java Mon Dec  2 00:51:47 2013
@@ -0,0 +1,90 @@
+
+package org.apache.juddi.api_v3;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for delete_Clerk complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="delete_Clerk">
+ *   &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"/>
+ *         &lt;element name="clerkID" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "delete_Clerk", propOrder = {
+    "authInfo",
+    "clerkID"
+})
+public class DeleteClerk {
+
+    @XmlElement(required = true)
+    protected String authInfo;
+    @XmlElement(required = true)
+    protected String clerkID;
+
+    /**
+     * 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 clerkID property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getClerkID() {
+        return clerkID;
+    }
+
+    /**
+     * Sets the value of the clerkID property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setClerkID(String value) {
+        this.clerkID = value;
+    }
+
+}

Added: juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteClerkResponse.java
URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteClerkResponse.java?rev=1546875&view=auto
==============================================================================
--- juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteClerkResponse.java (added)
+++ juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteClerkResponse.java Mon Dec  2 00:51:47 2013
@@ -0,0 +1,63 @@
+
+package org.apache.juddi.api_v3;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+import org.uddi.api_v3.DispositionReport;
+
+
+/**
+ * <p>Java class for delete_ClerkResponse complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="delete_ClerkResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="dispositionReport" type="{urn:uddi-org:api_v3}dispositionReport"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "delete_ClerkResponse", propOrder = {
+    "dispositionReport"
+})
+public class DeleteClerkResponse {
+
+    @XmlElement(required = true)
+    protected DispositionReport dispositionReport;
+
+    /**
+     * Gets the value of the dispositionReport property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DispositionReport }
+     *     
+     */
+    public DispositionReport getDispositionReport() {
+        return dispositionReport;
+    }
+
+    /**
+     * Sets the value of the dispositionReport property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DispositionReport }
+     *     
+     */
+    public void setDispositionReport(DispositionReport value) {
+        this.dispositionReport = value;
+    }
+
+}

Modified: juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteClientSubscriptionInfo.java
URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteClientSubscriptionInfo.java?rev=1546875&r1=1546874&r2=1546875&view=diff
==============================================================================
--- juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteClientSubscriptionInfo.java (original)
+++ juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteClientSubscriptionInfo.java Mon Dec  2 00:51:47 2013
@@ -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

Added: juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteNode.java
URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteNode.java?rev=1546875&view=auto
==============================================================================
--- juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteNode.java (added)
+++ juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteNode.java Mon Dec  2 00:51:47 2013
@@ -0,0 +1,90 @@
+
+package org.apache.juddi.api_v3;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for delete_Node complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="delete_Node">
+ *   &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"/>
+ *         &lt;element name="nodeID" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "delete_Node", propOrder = {
+    "authInfo",
+    "nodeID"
+})
+public class DeleteNode {
+
+    @XmlElement(required = true)
+    protected String authInfo;
+    @XmlElement(required = true)
+    protected String nodeID;
+
+    /**
+     * 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 nodeID property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getNodeID() {
+        return nodeID;
+    }
+
+    /**
+     * Sets the value of the nodeID property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setNodeID(String value) {
+        this.nodeID = value;
+    }
+
+}

Added: juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteNodeResponse.java
URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteNodeResponse.java?rev=1546875&view=auto
==============================================================================
--- juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteNodeResponse.java (added)
+++ juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeleteNodeResponse.java Mon Dec  2 00:51:47 2013
@@ -0,0 +1,63 @@
+
+package org.apache.juddi.api_v3;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+import org.uddi.api_v3.DispositionReport;
+
+
+/**
+ * <p>Java class for delete_NodeResponse complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="delete_NodeResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="dispositionReport" type="{urn:uddi-org:api_v3}dispositionReport"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "delete_NodeResponse", propOrder = {
+    "dispositionReport"
+})
+public class DeleteNodeResponse {
+
+    @XmlElement(required = true)
+    protected DispositionReport dispositionReport;
+
+    /**
+     * Gets the value of the dispositionReport property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link DispositionReport }
+     *     
+     */
+    public DispositionReport getDispositionReport() {
+        return dispositionReport;
+    }
+
+    /**
+     * Sets the value of the dispositionReport property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link DispositionReport }
+     *     
+     */
+    public void setDispositionReport(DispositionReport value) {
+        this.dispositionReport = value;
+    }
+
+}

Modified: juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeletePublisher.java
URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeletePublisher.java?rev=1546875&r1=1546874&r2=1546875&view=diff
==============================================================================
--- juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeletePublisher.java (original)
+++ juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/DeletePublisher.java Mon Dec  2 00:51:47 2013
@@ -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

Added: juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllClerks.java
URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllClerks.java?rev=1546875&view=auto
==============================================================================
--- juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllClerks.java (added)
+++ juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllClerks.java Mon Dec  2 00:51:47 2013
@@ -0,0 +1,60 @@
+
+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 get_AllClerks complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="get_AllClerks">
+ *   &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;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "get_AllClerks", propOrder = {
+    "authInfo"
+})
+public class GetAllClerks {
+
+    protected String authInfo;
+
+    /**
+     * 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;
+    }
+
+}

Added: juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllClerksResponse.java
URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllClerksResponse.java?rev=1546875&view=auto
==============================================================================
--- juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllClerksResponse.java (added)
+++ juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllClerksResponse.java Mon Dec  2 00:51:47 2013
@@ -0,0 +1,69 @@
+
+package org.apache.juddi.api_v3;
+
+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.XmlType;
+
+
+/**
+ * <p>Java class for get_AllClerksResponse complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="get_AllClerksResponse">
+ *   &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>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "get_AllClerksResponse", propOrder = {
+    "clerk"
+})
+public class GetAllClerksResponse {
+
+    @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>();
+        }
+        return this.clerk;
+    }
+
+}

Added: juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllClientSubscriptionInfo.java
URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllClientSubscriptionInfo.java?rev=1546875&view=auto
==============================================================================
--- juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllClientSubscriptionInfo.java (added)
+++ juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllClientSubscriptionInfo.java Mon Dec  2 00:51:47 2013
@@ -0,0 +1,60 @@
+
+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 get_allClientSubscriptionInfo complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="get_allClientSubscriptionInfo">
+ *   &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;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "get_allClientSubscriptionInfo", propOrder = {
+    "authInfo"
+})
+public class GetAllClientSubscriptionInfo {
+
+    protected String authInfo;
+
+    /**
+     * 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;
+    }
+
+}

Added: juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllClientSubscriptionInfoResponse.java
URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllClientSubscriptionInfoResponse.java?rev=1546875&view=auto
==============================================================================
--- juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllClientSubscriptionInfoResponse.java (added)
+++ juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllClientSubscriptionInfoResponse.java Mon Dec  2 00:51:47 2013
@@ -0,0 +1,67 @@
+
+package org.apache.juddi.api_v3;
+
+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.XmlType;
+
+
+/**
+ * <p>Java class for get_allClientSubscriptionInfoResponse complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="get_allClientSubscriptionInfoResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="subscriptions" type="{urn:juddi-apache-org:api_v3}subscriptionWrapper" maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "get_allClientSubscriptionInfoResponse", propOrder = {
+    "subscriptions"
+})
+public class GetAllClientSubscriptionInfoResponse {
+
+    protected List<SubscriptionWrapper> subscriptions;
+
+    /**
+     * Gets the value of the subscriptions 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 subscriptions property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getSubscriptions().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link SubscriptionWrapper }
+     * 
+     * 
+     */
+    public List<SubscriptionWrapper> getSubscriptions() {
+        if (subscriptions == null) {
+            subscriptions = new ArrayList<SubscriptionWrapper>();
+        }
+        return this.subscriptions;
+    }
+
+}

Added: juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllNodes.java
URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllNodes.java?rev=1546875&view=auto
==============================================================================
--- juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllNodes.java (added)
+++ juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllNodes.java Mon Dec  2 00:51:47 2013
@@ -0,0 +1,60 @@
+
+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 get_AllNodes complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="get_AllNodes">
+ *   &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;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "get_AllNodes", propOrder = {
+    "authInfo"
+})
+public class GetAllNodes {
+
+    protected String authInfo;
+
+    /**
+     * 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;
+    }
+
+}

Added: juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllNodesResponse.java
URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllNodesResponse.java?rev=1546875&view=auto
==============================================================================
--- juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllNodesResponse.java (added)
+++ juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllNodesResponse.java Mon Dec  2 00:51:47 2013
@@ -0,0 +1,69 @@
+
+package org.apache.juddi.api_v3;
+
+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.XmlType;
+
+
+/**
+ * <p>Java class for get_AllNodesResponse complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="get_AllNodesResponse">
+ *   &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"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "get_AllNodesResponse", propOrder = {
+    "node"
+})
+public class GetAllNodesResponse {
+
+    @XmlElement(required = 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>();
+        }
+        return this.node;
+    }
+
+}

Modified: juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllPublisherDetail.java
URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllPublisherDetail.java?rev=1546875&r1=1546874&r2=1546875&view=diff
==============================================================================
--- juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllPublisherDetail.java (original)
+++ juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetAllPublisherDetail.java Mon Dec  2 00:51:47 2013
@@ -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/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetPublisherDetail.java
URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetPublisherDetail.java?rev=1546875&r1=1546874&r2=1546875&view=diff
==============================================================================
--- juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetPublisherDetail.java (original)
+++ juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetPublisherDetail.java Mon Dec  2 00:51:47 2013
@@ -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

Added: juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetReplicationNodes.java
URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetReplicationNodes.java?rev=1546875&view=auto
==============================================================================
--- juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetReplicationNodes.java (added)
+++ juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetReplicationNodes.java Mon Dec  2 00:51:47 2013
@@ -0,0 +1,62 @@
+
+package org.apache.juddi.api_v3;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for get_ReplicationNodes complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="get_ReplicationNodes">
+ *   &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"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "get_ReplicationNodes", propOrder = {
+    "authInfo"
+})
+public class GetReplicationNodes {
+
+    @XmlElement(required = true)
+    protected String authInfo;
+
+    /**
+     * 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;
+    }
+
+}

Added: juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetReplicationNodesResponse.java
URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetReplicationNodesResponse.java?rev=1546875&view=auto
==============================================================================
--- juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetReplicationNodesResponse.java (added)
+++ juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/GetReplicationNodesResponse.java Mon Dec  2 00:51:47 2013
@@ -0,0 +1,63 @@
+
+package org.apache.juddi.api_v3;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+import org.uddi.repl_v3.ReplicationConfiguration;
+
+
+/**
+ * <p>Java class for get_ReplicationNodesResponse complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="get_ReplicationNodesResponse">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element ref="{urn:uddi-org:repl_v3}replicationConfiguration"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "get_ReplicationNodesResponse", propOrder = {
+    "replicationConfiguration"
+})
+public class GetReplicationNodesResponse {
+
+    @XmlElement(namespace = "urn:uddi-org:repl_v3", required = true)
+    protected ReplicationConfiguration replicationConfiguration;
+
+    /**
+     * Gets the value of the replicationConfiguration property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link ReplicationConfiguration }
+     *     
+     */
+    public ReplicationConfiguration getReplicationConfiguration() {
+        return replicationConfiguration;
+    }
+
+    /**
+     * Sets the value of the replicationConfiguration property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link ReplicationConfiguration }
+     *     
+     */
+    public void setReplicationConfiguration(ReplicationConfiguration value) {
+        this.replicationConfiguration = value;
+    }
+
+}

Modified: juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/Node.java
URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/Node.java?rev=1546875&r1=1546874&r2=1546875&view=diff
==============================================================================
--- juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/Node.java (original)
+++ juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/Node.java Mon Dec  2 00:51:47 2013
@@ -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/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/NodeDetail.java
URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/NodeDetail.java?rev=1546875&r1=1546874&r2=1546875&view=diff
==============================================================================
--- juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/NodeDetail.java (original)
+++ juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/NodeDetail.java Mon Dec  2 00:51:47 2013
@@ -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



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