[prev in list] [next in list] [prev in thread] [next in thread] 

List:       juddi-cvs
Subject:    svn commit: r681228 [10/13] - in /webservices/juddi/branches/v3_trunk: ./
From:       jfaath () apache ! org
Date:       2008-07-30 22:27:31
Message-ID: 20080730222742.9EEDD2388A7E () eris ! apache ! org
[Download RAW message or body]

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/sub_v3/Subscription.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/sub_v3/Subscription.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/sub_v3/Subscription.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/sub_v3/Subscription.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,245 @@
+/*
+ * 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.uddi.sub_v3;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.Duration;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+
+/**
+ * <p>Java class for subscription complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within \
this class. + * 
+ * <pre>
+ * &lt;complexType name="subscription">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element ref="{urn:uddi-org:sub_v3}subscriptionKey" minOccurs="0"/>
+ *         &lt;element ref="{urn:uddi-org:sub_v3}subscriptionFilter" minOccurs="0"/>
+ *         &lt;element ref="{urn:uddi-org:api_v3}bindingKey" minOccurs="0"/>
+ *         &lt;element ref="{urn:uddi-org:sub_v3}notificationInterval" \
minOccurs="0"/> + *         &lt;element ref="{urn:uddi-org:sub_v3}maxEntities" \
minOccurs="0"/> + *         &lt;element ref="{urn:uddi-org:sub_v3}expiresAfter" \
minOccurs="0"/> + *       &lt;/sequence>
+ *       &lt;attribute name="brief" type="{urn:uddi-org:sub_v3}brief" />
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "subscription", propOrder = {
+    "subscriptionKey",
+    "subscriptionFilter",
+    "bindingKey",
+    "notificationInterval",
+    "maxEntities",
+    "expiresAfter"
+})
+public class Subscription {
+
+    protected String subscriptionKey;
+    protected SubscriptionFilter subscriptionFilter;
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected String bindingKey;
+    protected Duration notificationInterval;
+    protected Integer maxEntities;
+    protected XMLGregorianCalendar expiresAfter;
+    @XmlAttribute
+    protected Boolean brief;
+
+    /**
+     * 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 subscriptionFilter property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link SubscriptionFilter }
+     *     
+     */
+    public SubscriptionFilter getSubscriptionFilter() {
+        return subscriptionFilter;
+    }
+
+    /**
+     * Sets the value of the subscriptionFilter property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link SubscriptionFilter }
+     *     
+     */
+    public void setSubscriptionFilter(SubscriptionFilter value) {
+        this.subscriptionFilter = value;
+    }
+
+    /**
+     * Gets the value of the bindingKey property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getBindingKey() {
+        return bindingKey;
+    }
+
+    /**
+     * Sets the value of the bindingKey property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setBindingKey(String value) {
+        this.bindingKey = value;
+    }
+
+    /**
+     * Gets the value of the notificationInterval property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Duration }
+     *     
+     */
+    public Duration getNotificationInterval() {
+        return notificationInterval;
+    }
+
+    /**
+     * Sets the value of the notificationInterval property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Duration }
+     *     
+     */
+    public void setNotificationInterval(Duration value) {
+        this.notificationInterval = value;
+    }
+
+    /**
+     * Gets the value of the maxEntities property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Integer }
+     *     
+     */
+    public Integer getMaxEntities() {
+        return maxEntities;
+    }
+
+    /**
+     * Sets the value of the maxEntities property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Integer }
+     *     
+     */
+    public void setMaxEntities(Integer value) {
+        this.maxEntities = value;
+    }
+
+    /**
+     * Gets the value of the expiresAfter property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link XMLGregorianCalendar }
+     *     
+     */
+    public XMLGregorianCalendar getExpiresAfter() {
+        return expiresAfter;
+    }
+
+    /**
+     * Sets the value of the expiresAfter property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link XMLGregorianCalendar }
+     *     
+     */
+    public void setExpiresAfter(XMLGregorianCalendar value) {
+        this.expiresAfter = value;
+    }
+
+    /**
+     * Gets the value of the brief property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Boolean }
+     *     
+     */
+    public Boolean isBrief() {
+        return brief;
+    }
+
+    /**
+     * Sets the value of the brief property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Boolean }
+     *     
+     */
+    public void setBrief(Boolean value) {
+        this.brief = value;
+    }
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/sub_v3/SubscriptionFilter.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/sub_v3/SubscriptionFilter.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/sub_v3/SubscriptionFilter.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/sub_v3/SubscriptionFilter.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,342 @@
+/*
+ * 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.uddi.sub_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.FindBinding;
+import org.uddi.api_v3.FindBusiness;
+import org.uddi.api_v3.FindRelatedBusinesses;
+import org.uddi.api_v3.FindService;
+import org.uddi.api_v3.FindTModel;
+import org.uddi.api_v3.GetAssertionStatusReport;
+import org.uddi.api_v3.GetBindingDetail;
+import org.uddi.api_v3.GetBusinessDetail;
+import org.uddi.api_v3.GetServiceDetail;
+import org.uddi.api_v3.GetTModelDetail;
+
+
+/**
+ * <p>Java class for subscriptionFilter complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within \
this class. + * 
+ * <pre>
+ * &lt;complexType name="subscriptionFilter">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;choice>
+ *         &lt;element ref="{urn:uddi-org:api_v3}find_binding"/>
+ *         &lt;element ref="{urn:uddi-org:api_v3}find_business"/>
+ *         &lt;element ref="{urn:uddi-org:api_v3}find_relatedBusinesses"/>
+ *         &lt;element ref="{urn:uddi-org:api_v3}find_service"/>
+ *         &lt;element ref="{urn:uddi-org:api_v3}find_tModel"/>
+ *         &lt;element ref="{urn:uddi-org:api_v3}get_bindingDetail"/>
+ *         &lt;element ref="{urn:uddi-org:api_v3}get_businessDetail"/>
+ *         &lt;element ref="{urn:uddi-org:api_v3}get_serviceDetail"/>
+ *         &lt;element ref="{urn:uddi-org:api_v3}get_tModelDetail"/>
+ *         &lt;element ref="{urn:uddi-org:api_v3}get_assertionStatusReport"/>
+ *       &lt;/choice>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "subscriptionFilter", propOrder = {
+    "findBinding",
+    "findBusiness",
+    "findRelatedBusinesses",
+    "findService",
+    "findTModel",
+    "getBindingDetail",
+    "getBusinessDetail",
+    "getServiceDetail",
+    "getTModelDetail",
+    "getAssertionStatusReport"
+})
+public class SubscriptionFilter {
+
+    @XmlElement(name = "find_binding", namespace = "urn:uddi-org:api_v3")
+    protected FindBinding findBinding;
+    @XmlElement(name = "find_business", namespace = "urn:uddi-org:api_v3")
+    protected FindBusiness findBusiness;
+    @XmlElement(name = "find_relatedBusinesses", namespace = "urn:uddi-org:api_v3")
+    protected FindRelatedBusinesses findRelatedBusinesses;
+    @XmlElement(name = "find_service", namespace = "urn:uddi-org:api_v3")
+    protected FindService findService;
+    @XmlElement(name = "find_tModel", namespace = "urn:uddi-org:api_v3")
+    protected FindTModel findTModel;
+    @XmlElement(name = "get_bindingDetail", namespace = "urn:uddi-org:api_v3")
+    protected GetBindingDetail getBindingDetail;
+    @XmlElement(name = "get_businessDetail", namespace = "urn:uddi-org:api_v3")
+    protected GetBusinessDetail getBusinessDetail;
+    @XmlElement(name = "get_serviceDetail", namespace = "urn:uddi-org:api_v3")
+    protected GetServiceDetail getServiceDetail;
+    @XmlElement(name = "get_tModelDetail", namespace = "urn:uddi-org:api_v3")
+    protected GetTModelDetail getTModelDetail;
+    @XmlElement(name = "get_assertionStatusReport", namespace = \
"urn:uddi-org:api_v3") +    protected GetAssertionStatusReport \
getAssertionStatusReport; +
+    /**
+     * Gets the value of the findBinding property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link FindBinding }
+     *     
+     */
+    public FindBinding getFindBinding() {
+        return findBinding;
+    }
+
+    /**
+     * Sets the value of the findBinding property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link FindBinding }
+     *     
+     */
+    public void setFindBinding(FindBinding value) {
+        this.findBinding = value;
+    }
+
+    /**
+     * Gets the value of the findBusiness property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link FindBusiness }
+     *     
+     */
+    public FindBusiness getFindBusiness() {
+        return findBusiness;
+    }
+
+    /**
+     * Sets the value of the findBusiness property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link FindBusiness }
+     *     
+     */
+    public void setFindBusiness(FindBusiness value) {
+        this.findBusiness = value;
+    }
+
+    /**
+     * Gets the value of the findRelatedBusinesses property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link FindRelatedBusinesses }
+     *     
+     */
+    public FindRelatedBusinesses getFindRelatedBusinesses() {
+        return findRelatedBusinesses;
+    }
+
+    /**
+     * Sets the value of the findRelatedBusinesses property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link FindRelatedBusinesses }
+     *     
+     */
+    public void setFindRelatedBusinesses(FindRelatedBusinesses value) {
+        this.findRelatedBusinesses = value;
+    }
+
+    /**
+     * Gets the value of the findService property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link FindService }
+     *     
+     */
+    public FindService getFindService() {
+        return findService;
+    }
+
+    /**
+     * Sets the value of the findService property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link FindService }
+     *     
+     */
+    public void setFindService(FindService value) {
+        this.findService = value;
+    }
+
+    /**
+     * Gets the value of the findTModel property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link FindTModel }
+     *     
+     */
+    public FindTModel getFindTModel() {
+        return findTModel;
+    }
+
+    /**
+     * Sets the value of the findTModel property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link FindTModel }
+     *     
+     */
+    public void setFindTModel(FindTModel value) {
+        this.findTModel = value;
+    }
+
+    /**
+     * Gets the value of the getBindingDetail property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link GetBindingDetail }
+     *     
+     */
+    public GetBindingDetail getGetBindingDetail() {
+        return getBindingDetail;
+    }
+
+    /**
+     * Sets the value of the getBindingDetail property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link GetBindingDetail }
+     *     
+     */
+    public void setGetBindingDetail(GetBindingDetail value) {
+        this.getBindingDetail = value;
+    }
+
+    /**
+     * Gets the value of the getBusinessDetail property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link GetBusinessDetail }
+     *     
+     */
+    public GetBusinessDetail getGetBusinessDetail() {
+        return getBusinessDetail;
+    }
+
+    /**
+     * Sets the value of the getBusinessDetail property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link GetBusinessDetail }
+     *     
+     */
+    public void setGetBusinessDetail(GetBusinessDetail value) {
+        this.getBusinessDetail = value;
+    }
+
+    /**
+     * Gets the value of the getServiceDetail property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link GetServiceDetail }
+     *     
+     */
+    public GetServiceDetail getGetServiceDetail() {
+        return getServiceDetail;
+    }
+
+    /**
+     * Sets the value of the getServiceDetail property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link GetServiceDetail }
+     *     
+     */
+    public void setGetServiceDetail(GetServiceDetail value) {
+        this.getServiceDetail = value;
+    }
+
+    /**
+     * Gets the value of the getTModelDetail property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link GetTModelDetail }
+     *     
+     */
+    public GetTModelDetail getGetTModelDetail() {
+        return getTModelDetail;
+    }
+
+    /**
+     * Sets the value of the getTModelDetail property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link GetTModelDetail }
+     *     
+     */
+    public void setGetTModelDetail(GetTModelDetail value) {
+        this.getTModelDetail = value;
+    }
+
+    /**
+     * Gets the value of the getAssertionStatusReport property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link GetAssertionStatusReport }
+     *     
+     */
+    public GetAssertionStatusReport getGetAssertionStatusReport() {
+        return getAssertionStatusReport;
+    }
+
+    /**
+     * Sets the value of the getAssertionStatusReport property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link GetAssertionStatusReport }
+     *     
+     */
+    public void setGetAssertionStatusReport(GetAssertionStatusReport value) {
+        this.getAssertionStatusReport = value;
+    }
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/sub_v3/SubscriptionResultsList.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/sub_v3/SubscriptionResultsList.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/sub_v3/SubscriptionResultsList.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/sub_v3/SubscriptionResultsList.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,460 @@
+/*
+ * 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.uddi.sub_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.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+import org.uddi.api_v3.AssertionStatusReport;
+import org.uddi.api_v3.BindingDetail;
+import org.uddi.api_v3.BusinessDetail;
+import org.uddi.api_v3.BusinessList;
+import org.uddi.api_v3.RelatedBusinessesList;
+import org.uddi.api_v3.ServiceDetail;
+import org.uddi.api_v3.ServiceList;
+import org.uddi.api_v3.TModelDetail;
+import org.uddi.api_v3.TModelList;
+
+
+/**
+ * <p>Java class for subscriptionResultsList complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within \
this class. + * 
+ * <pre>
+ * &lt;complexType name="subscriptionResultsList">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element ref="{urn:uddi-org:sub_v3}chunkToken" minOccurs="0"/>
+ *         &lt;element ref="{urn:uddi-org:sub_v3}coveragePeriod"/>
+ *         &lt;element ref="{urn:uddi-org:sub_v3}subscription"/>
+ *         &lt;choice minOccurs="0">
+ *           &lt;element ref="{urn:uddi-org:api_v3}bindingDetail"/>
+ *           &lt;element ref="{urn:uddi-org:api_v3}businessDetail"/>
+ *           &lt;element ref="{urn:uddi-org:api_v3}serviceDetail"/>
+ *           &lt;element ref="{urn:uddi-org:api_v3}tModelDetail"/>
+ *           &lt;element ref="{urn:uddi-org:api_v3}businessList"/>
+ *           &lt;element ref="{urn:uddi-org:api_v3}relatedBusinessesList"/>
+ *           &lt;element ref="{urn:uddi-org:api_v3}serviceList"/>
+ *           &lt;element ref="{urn:uddi-org:api_v3}tModelList"/>
+ *           &lt;element ref="{urn:uddi-org:api_v3}assertionStatusReport"/>
+ *         &lt;/choice>
+ *         &lt;element ref="{urn:uddi-org:sub_v3}keyBag" maxOccurs="unbounded" \
minOccurs="0"/> + *       &lt;/sequence>
+ *       &lt;attribute name="someResultsUnavailable" \
type="{http://www.w3.org/2001/XMLSchema}boolean" /> + *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "subscriptionResultsList", propOrder = {
+    "chunkToken",
+    "coveragePeriod",
+    "subscription",
+    "bindingDetail",
+    "businessDetail",
+    "serviceDetail",
+    "tModelDetail",
+    "businessList",
+    "relatedBusinessesList",
+    "serviceList",
+    "tModelList",
+    "assertionStatusReport",
+    "keyBag"
+})
+public class SubscriptionResultsList {
+
+    protected String chunkToken;
+    @XmlElement(required = true)
+    protected CoveragePeriod coveragePeriod;
+    @XmlElement(required = true)
+    protected Subscription subscription;
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected BindingDetail bindingDetail;
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected BusinessDetail businessDetail;
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected ServiceDetail serviceDetail;
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected TModelDetail tModelDetail;
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected BusinessList businessList;
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected RelatedBusinessesList relatedBusinessesList;
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected ServiceList serviceList;
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected TModelList tModelList;
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected AssertionStatusReport assertionStatusReport;
+    protected List<KeyBag> keyBag;
+    @XmlAttribute
+    protected Boolean someResultsUnavailable;
+
+    /**
+     * Gets the value of the chunkToken property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getChunkToken() {
+        return chunkToken;
+    }
+
+    /**
+     * Sets the value of the chunkToken property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setChunkToken(String value) {
+        this.chunkToken = value;
+    }
+
+    /**
+     * Gets the value of the coveragePeriod property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link CoveragePeriod }
+     *     
+     */
+    public CoveragePeriod getCoveragePeriod() {
+        return coveragePeriod;
+    }
+
+    /**
+     * Sets the value of the coveragePeriod property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link CoveragePeriod }
+     *     
+     */
+    public void setCoveragePeriod(CoveragePeriod value) {
+        this.coveragePeriod = value;
+    }
+
+    /**
+     * Gets the value of the subscription property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Subscription }
+     *     
+     */
+    public Subscription getSubscription() {
+        return subscription;
+    }
+
+    /**
+     * Sets the value of the subscription property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Subscription }
+     *     
+     */
+    public void setSubscription(Subscription value) {
+        this.subscription = value;
+    }
+
+    /**
+     * Gets the value of the bindingDetail property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link BindingDetail }
+     *     
+     */
+    public BindingDetail getBindingDetail() {
+        return bindingDetail;
+    }
+
+    /**
+     * Sets the value of the bindingDetail property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link BindingDetail }
+     *     
+     */
+    public void setBindingDetail(BindingDetail value) {
+        this.bindingDetail = value;
+    }
+
+    /**
+     * Gets the value of the businessDetail property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link BusinessDetail }
+     *     
+     */
+    public BusinessDetail getBusinessDetail() {
+        return businessDetail;
+    }
+
+    /**
+     * Sets the value of the businessDetail property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link BusinessDetail }
+     *     
+     */
+    public void setBusinessDetail(BusinessDetail value) {
+        this.businessDetail = value;
+    }
+
+    /**
+     * Gets the value of the serviceDetail property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link ServiceDetail }
+     *     
+     */
+    public ServiceDetail getServiceDetail() {
+        return serviceDetail;
+    }
+
+    /**
+     * Sets the value of the serviceDetail property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link ServiceDetail }
+     *     
+     */
+    public void setServiceDetail(ServiceDetail value) {
+        this.serviceDetail = value;
+    }
+
+    /**
+     * Gets the value of the tModelDetail property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link TModelDetail }
+     *     
+     */
+    public TModelDetail getTModelDetail() {
+        return tModelDetail;
+    }
+
+    /**
+     * Sets the value of the tModelDetail property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link TModelDetail }
+     *     
+     */
+    public void setTModelDetail(TModelDetail value) {
+        this.tModelDetail = value;
+    }
+
+    /**
+     * Gets the value of the businessList property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link BusinessList }
+     *     
+     */
+    public BusinessList getBusinessList() {
+        return businessList;
+    }
+
+    /**
+     * Sets the value of the businessList property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link BusinessList }
+     *     
+     */
+    public void setBusinessList(BusinessList value) {
+        this.businessList = value;
+    }
+
+    /**
+     * Gets the value of the relatedBusinessesList property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link RelatedBusinessesList }
+     *     
+     */
+    public RelatedBusinessesList getRelatedBusinessesList() {
+        return relatedBusinessesList;
+    }
+
+    /**
+     * Sets the value of the relatedBusinessesList property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link RelatedBusinessesList }
+     *     
+     */
+    public void setRelatedBusinessesList(RelatedBusinessesList value) {
+        this.relatedBusinessesList = value;
+    }
+
+    /**
+     * Gets the value of the serviceList property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link ServiceList }
+     *     
+     */
+    public ServiceList getServiceList() {
+        return serviceList;
+    }
+
+    /**
+     * Sets the value of the serviceList property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link ServiceList }
+     *     
+     */
+    public void setServiceList(ServiceList value) {
+        this.serviceList = value;
+    }
+
+    /**
+     * Gets the value of the tModelList property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link TModelList }
+     *     
+     */
+    public TModelList getTModelList() {
+        return tModelList;
+    }
+
+    /**
+     * Sets the value of the tModelList property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link TModelList }
+     *     
+     */
+    public void setTModelList(TModelList value) {
+        this.tModelList = value;
+    }
+
+    /**
+     * Gets the value of the assertionStatusReport property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link AssertionStatusReport }
+     *     
+     */
+    public AssertionStatusReport getAssertionStatusReport() {
+        return assertionStatusReport;
+    }
+
+    /**
+     * Sets the value of the assertionStatusReport property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link AssertionStatusReport }
+     *     
+     */
+    public void setAssertionStatusReport(AssertionStatusReport value) {
+        this.assertionStatusReport = value;
+    }
+
+    /**
+     * Gets the value of the keyBag 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 keyBag property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getKeyBag().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link KeyBag }
+     * 
+     * 
+     */
+    public List<KeyBag> getKeyBag() {
+        if (keyBag == null) {
+            keyBag = new ArrayList<KeyBag>();
+        }
+        return this.keyBag;
+    }
+
+    /**
+     * Gets the value of the someResultsUnavailable property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Boolean }
+     *     
+     */
+    public Boolean isSomeResultsUnavailable() {
+        return someResultsUnavailable;
+    }
+
+    /**
+     * Sets the value of the someResultsUnavailable property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Boolean }
+     *     
+     */
+    public void setSomeResultsUnavailable(Boolean value) {
+        this.someResultsUnavailable = value;
+    }
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/sub_v3/Subscriptions.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/sub_v3/Subscriptions.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/sub_v3/Subscriptions.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/sub_v3/Subscriptions.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,85 @@
+/*
+ * 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.uddi.sub_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 subscriptions complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within \
this class. + * 
+ * <pre>
+ * &lt;complexType name="subscriptions">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element ref="{urn:uddi-org:sub_v3}subscription" maxOccurs="unbounded" \
minOccurs="0"/> + *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "subscriptions", propOrder = {
+    "subscription"
+})
+public class Subscriptions {
+
+    protected List<Subscription> subscription;
+
+    /**
+     * Gets the value of the subscription 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 subscription \
property. +     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getSubscription().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link Subscription }
+     * 
+     * 
+     */
+    public List<Subscription> getSubscription() {
+        if (subscription == null) {
+            subscription = new ArrayList<Subscription>();
+        }
+        return this.subscription;
+    }
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/sub_v3/package-info.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/sub_v3/package-info.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/sub_v3/package-info.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/sub_v3/package-info.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,20 @@
+/*
+ * 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.
+ *
+ */
+
+@javax.xml.bind.annotation.XmlSchema(namespace = "urn:uddi-org:sub_v3", \
elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package \
org.uddi.sub_v3; +
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/subr_v3/NotifySubscriptionListener.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/subr_v3/NotifySubscriptionListener.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/subr_v3/NotifySubscriptionListener.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/subr_v3/NotifySubscriptionListener.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,109 @@
+/*
+ * 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.uddi.subr_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.sub_v3.SubscriptionResultsList;
+
+
+/**
+ * <p>Java class for notify_subscriptionListener complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within \
this class. + * 
+ * <pre>
+ * &lt;complexType name="notify_subscriptionListener">
+ *   &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;element ref="{urn:uddi-org:sub_v3}subscriptionResultsList"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "notify_subscriptionListener", propOrder = {
+    "authInfo",
+    "subscriptionResultsList"
+})
+public class NotifySubscriptionListener {
+
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected String authInfo;
+    @XmlElement(namespace = "urn:uddi-org:sub_v3", required = true)
+    protected SubscriptionResultsList subscriptionResultsList;
+
+    /**
+     * 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 subscriptionResultsList property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link SubscriptionResultsList }
+     *     
+     */
+    public SubscriptionResultsList getSubscriptionResultsList() {
+        return subscriptionResultsList;
+    }
+
+    /**
+     * Sets the value of the subscriptionResultsList property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link SubscriptionResultsList }
+     *     
+     */
+    public void setSubscriptionResultsList(SubscriptionResultsList value) {
+        this.subscriptionResultsList = value;
+    }
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/subr_v3/ObjectFactory.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/subr_v3/ObjectFactory.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/subr_v3/ObjectFactory.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/subr_v3/ObjectFactory.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,71 @@
+/*
+ * 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.uddi.subr_v3;
+
+import javax.xml.bind.JAXBElement;
+import javax.xml.bind.annotation.XmlElementDecl;
+import javax.xml.bind.annotation.XmlRegistry;
+import javax.xml.namespace.QName;
+
+
+/**
+ * This object contains factory methods for each 
+ * Java content interface and Java element interface 
+ * generated in the org.uddi.subr_v3 package. 
+ * <p>An ObjectFactory allows you to programatically 
+ * construct new instances of the Java representation 
+ * for XML content. The Java representation of XML 
+ * content can consist of schema derived interfaces 
+ * and classes representing the binding of schema 
+ * type definitions, element declarations and model 
+ * groups.  Factory methods for each of these are 
+ * provided in this class.
+ * 
+ */
+@XmlRegistry
+public class ObjectFactory {
+
+    private final static QName _NotifySubscriptionListener_QNAME = new \
QName("urn:uddi-org:subr_v3", "notify_subscriptionListener"); +
+    /**
+     * Create a new ObjectFactory that can be used to create new instances of schema \
derived classes for package: org.uddi.subr_v3 +     * 
+     */
+    public ObjectFactory() {
+    }
+
+    /**
+     * Create an instance of {@link NotifySubscriptionListener }
+     * 
+     */
+    public NotifySubscriptionListener createNotifySubscriptionListener() {
+        return new NotifySubscriptionListener();
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link \
NotifySubscriptionListener }{@code >}} +     * 
+     */
+    @XmlElementDecl(namespace = "urn:uddi-org:subr_v3", name = \
"notify_subscriptionListener") +    public JAXBElement<NotifySubscriptionListener> \
createNotifySubscriptionListener(NotifySubscriptionListener value) { +        return \
new JAXBElement<NotifySubscriptionListener>(_NotifySubscriptionListener_QNAME, \
NotifySubscriptionListener.class, null, value); +    }
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/subr_v3/package-info.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/subr_v3/package-info.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/subr_v3/package-info.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/subr_v3/package-info.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,20 @@
+/*
+ * 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.
+ *
+ */
+
+@javax.xml.bind.annotation.XmlSchema(namespace = "urn:uddi-org:subr_v3", \
elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package \
org.uddi.subr_v3; +
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/DispositionReportFaultMessage.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main \
/java/org/uddi/v3_service/DispositionReportFaultMessage.java?rev=681228&view=auto \
                ==============================================================================
                
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/DispositionReportFaultMessage.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/DispositionReportFaultMessage.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,73 @@
+/*
+ * 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.uddi.v3_service;
+
+import javax.xml.ws.WebFault;
+import org.uddi.api_v3.DispositionReport;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.1.3-b02-
+ * Generated source version: 2.1
+ * 
+ */
+@WebFault(name = "dispositionReport", targetNamespace = "urn:uddi-org:api_v3")
+public class DispositionReportFaultMessage
+    extends Exception
+{
+
+    /**
+     * Java type that goes as soapenv:Fault detail element.
+     * 
+     */
+    private DispositionReport faultInfo;
+
+    /**
+     * 
+     * @param message
+     * @param faultInfo
+     */
+    public DispositionReportFaultMessage(String message, DispositionReport \
faultInfo) { +        super(message);
+        this.faultInfo = faultInfo;
+    }
+
+    /**
+     * 
+     * @param message
+     * @param faultInfo
+     * @param cause
+     */
+    public DispositionReportFaultMessage(String message, DispositionReport \
faultInfo, Throwable cause) { +        super(message, cause);
+        this.faultInfo = faultInfo;
+    }
+
+    /**
+     * 
+     * @return
+     *     returns fault bean: org.uddi.api_v3.DispositionReport
+     */
+    public DispositionReport getFaultInfo() {
+        return faultInfo;
+    }
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDICustodyTransferPortType.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDICustodyTransferPortType.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDICustodyTransferPortType.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDICustodyTransferPortType.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,112 @@
+/*
+ * 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.uddi.v3_service;
+
+import javax.jws.WebMethod;
+import javax.jws.WebParam;
+import javax.jws.WebService;
+import javax.jws.soap.SOAPBinding;
+import javax.xml.bind.annotation.XmlSeeAlso;
+import javax.xml.datatype.XMLGregorianCalendar;
+import javax.xml.ws.Holder;
+import javax.xml.ws.RequestWrapper;
+import javax.xml.ws.ResponseWrapper;
+import org.uddi.custody_v3.DiscardTransferToken;
+import org.uddi.custody_v3.KeyBag;
+import org.uddi.custody_v3.TransferEntities;
+
+
+/**
+ * This portType defines all of the UDDI custody transfer operations.
+ * 
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.1.3-b02-
+ * Generated source version: 2.1
+ * 
+ */
+@WebService(name = "UDDI_CustodyTransfer_PortType", targetNamespace = \
"urn:uddi-org:custody_v3_portType") +@XmlSeeAlso({
+    org.uddi.policy_v3_instanceparms.ObjectFactory.class,
+    org.uddi.policy_v3.ObjectFactory.class,
+    org.w3._2000._09.xmldsig_.ObjectFactory.class,
+    org.uddi.api_v3.ObjectFactory.class,
+    org.uddi.custody_v3.ObjectFactory.class,
+    org.uddi.vscache_v3.ObjectFactory.class,
+    org.uddi.repl_v3.ObjectFactory.class,
+    org.uddi.sub_v3.ObjectFactory.class,
+    org.uddi.subr_v3.ObjectFactory.class,
+    org.uddi.vs_v3.ObjectFactory.class
+})
+public interface UDDICustodyTransferPortType {
+
+
+    /**
+     * 
+     * @param body
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "discard_transferToken", action = \
"discard_transferToken") +    @SOAPBinding(parameterStyle = \
SOAPBinding.ParameterStyle.BARE) +    public void discardTransferToken(
+        @WebParam(name = "discard_transferToken", targetNamespace = \
"urn:uddi-org:custody_v3", partName = "body") +        DiscardTransferToken body)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param nodeID
+     * @param opaqueToken
+     * @param keyBag
+     * @param expirationTime
+     * @param authInfo
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "get_transferToken", action = "get_transferToken")
+    @RequestWrapper(localName = "get_transferToken", targetNamespace = \
"urn:uddi-org:custody_v3", className = "org.uddi.custody_v3.GetTransferToken") +    \
@ResponseWrapper(localName = "transferToken", targetNamespace = \
"urn:uddi-org:custody_v3", className = "org.uddi.custody_v3.TransferToken") +    \
public void getTransferToken( +        @WebParam(name = "authInfo", targetNamespace = \
"urn:uddi-org:api_v3") +        String authInfo,
+        @WebParam(name = "keyBag", targetNamespace = "urn:uddi-org:custody_v3")
+        KeyBag keyBag,
+        @WebParam(name = "nodeID", targetNamespace = "urn:uddi-org:api_v3", mode = \
WebParam.Mode.OUT) +        Holder<String> nodeID,
+        @WebParam(name = "expirationTime", targetNamespace = \
"urn:uddi-org:custody_v3", mode = WebParam.Mode.OUT) +        \
Holder<XMLGregorianCalendar> expirationTime, +        @WebParam(name = "opaqueToken", \
targetNamespace = "urn:uddi-org:custody_v3", mode = WebParam.Mode.OUT) +        \
Holder<byte[]> opaqueToken) +        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param body
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "transfer_entities", action = "transfer_entities")
+    @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+    public void transferEntities(
+        @WebParam(name = "transfer_entities", targetNamespace = \
"urn:uddi-org:custody_v3", partName = "body") +        TransferEntities body)
+        throws DispositionReportFaultMessage
+    ;
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDIInquiryPortType.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDIInquiryPortType.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDIInquiryPortType.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDIInquiryPortType.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,224 @@
+/*
+ * 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.uddi.v3_service;
+
+import javax.jws.WebMethod;
+import javax.jws.WebParam;
+import javax.jws.WebResult;
+import javax.jws.WebService;
+import javax.jws.soap.SOAPBinding;
+import javax.xml.bind.annotation.XmlSeeAlso;
+import org.uddi.api_v3.BindingDetail;
+import org.uddi.api_v3.BusinessDetail;
+import org.uddi.api_v3.BusinessList;
+import org.uddi.api_v3.FindBinding;
+import org.uddi.api_v3.FindBusiness;
+import org.uddi.api_v3.FindRelatedBusinesses;
+import org.uddi.api_v3.FindService;
+import org.uddi.api_v3.FindTModel;
+import org.uddi.api_v3.GetBindingDetail;
+import org.uddi.api_v3.GetBusinessDetail;
+import org.uddi.api_v3.GetOperationalInfo;
+import org.uddi.api_v3.GetServiceDetail;
+import org.uddi.api_v3.GetTModelDetail;
+import org.uddi.api_v3.OperationalInfos;
+import org.uddi.api_v3.RelatedBusinessesList;
+import org.uddi.api_v3.ServiceDetail;
+import org.uddi.api_v3.ServiceList;
+import org.uddi.api_v3.TModelDetail;
+import org.uddi.api_v3.TModelList;
+
+
+/**
+ * This portType defines all of the UDDI inquiry operations.
+ * 
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.1.3-b02-
+ * Generated source version: 2.1
+ * 
+ */
+@WebService(name = "UDDI_Inquiry_PortType", targetNamespace = \
"urn:uddi-org:api_v3_portType") +@SOAPBinding(parameterStyle = \
SOAPBinding.ParameterStyle.BARE) +@XmlSeeAlso({
+    org.uddi.policy_v3_instanceparms.ObjectFactory.class,
+    org.uddi.policy_v3.ObjectFactory.class,
+    org.w3._2000._09.xmldsig_.ObjectFactory.class,
+    org.uddi.api_v3.ObjectFactory.class,
+    org.uddi.custody_v3.ObjectFactory.class,
+    org.uddi.vscache_v3.ObjectFactory.class,
+    org.uddi.repl_v3.ObjectFactory.class,
+    org.uddi.sub_v3.ObjectFactory.class,
+    org.uddi.subr_v3.ObjectFactory.class,
+    org.uddi.vs_v3.ObjectFactory.class
+})
+public interface UDDIInquiryPortType {
+
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v3.BindingDetail
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "find_binding", action = "find_binding")
+    @WebResult(name = "bindingDetail", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +    public BindingDetail findBinding(
+        @WebParam(name = "find_binding", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +        FindBinding body)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v3.BusinessList
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "find_business", action = "find_business")
+    @WebResult(name = "businessList", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +    public BusinessList findBusiness(
+        @WebParam(name = "find_business", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +        FindBusiness body)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v3.RelatedBusinessesList
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "find_relatedBusinesses", action = \
"find_relatedBusinesses") +    @WebResult(name = "relatedBusinessesList", \
targetNamespace = "urn:uddi-org:api_v3", partName = "body") +    public \
RelatedBusinessesList findRelatedBusinesses( +        @WebParam(name = \
"find_relatedBusinesses", targetNamespace = "urn:uddi-org:api_v3", partName = "body") \
+        FindRelatedBusinesses body) +        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v3.ServiceList
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "find_service", action = "find_service")
+    @WebResult(name = "serviceList", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +    public ServiceList findService(
+        @WebParam(name = "find_service", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +        FindService body)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v3.TModelList
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "find_tModel", action = "find_tModel")
+    @WebResult(name = "tModelList", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +    public TModelList findTModel(
+        @WebParam(name = "find_tModel", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +        FindTModel body)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v3.BindingDetail
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "get_bindingDetail", action = "get_bindingDetail")
+    @WebResult(name = "bindingDetail", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +    public BindingDetail getBindingDetail(
+        @WebParam(name = "get_bindingDetail", targetNamespace = \
"urn:uddi-org:api_v3", partName = "body") +        GetBindingDetail body)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v3.BusinessDetail
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "get_businessDetail", action = "get_businessDetail")
+    @WebResult(name = "businessDetail", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +    public BusinessDetail getBusinessDetail(
+        @WebParam(name = "get_businessDetail", targetNamespace = \
"urn:uddi-org:api_v3", partName = "body") +        GetBusinessDetail body)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v3.OperationalInfos
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "get_operationalInfo", action = \
"get_operationalInfo") +    @WebResult(name = "operationalInfos", targetNamespace = \
"urn:uddi-org:api_v3", partName = "body") +    public OperationalInfos \
getOperationalInfo( +        @WebParam(name = "get_operationalInfo", targetNamespace \
= "urn:uddi-org:api_v3", partName = "body") +        GetOperationalInfo body)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v3.ServiceDetail
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "get_serviceDetail", action = "get_serviceDetail")
+    @WebResult(name = "serviceDetail", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +    public ServiceDetail getServiceDetail(
+        @WebParam(name = "get_serviceDetail", targetNamespace = \
"urn:uddi-org:api_v3", partName = "body") +        GetServiceDetail body)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v3.TModelDetail
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "get_tModelDetail", action = "get_tModelDetail")
+    @WebResult(name = "tModelDetail", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +    public TModelDetail getTModelDetail(
+        @WebParam(name = "get_tModelDetail", targetNamespace = \
"urn:uddi-org:api_v3", partName = "body") +        GetTModelDetail body)
+        throws DispositionReportFaultMessage
+    ;
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDIPublicationPortType.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDIPublicationPortType.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDIPublicationPortType.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDIPublicationPortType.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,289 @@
+/*
+ * 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.uddi.v3_service;
+
+import java.util.List;
+import javax.jws.WebMethod;
+import javax.jws.WebParam;
+import javax.jws.WebResult;
+import javax.jws.WebService;
+import javax.jws.soap.SOAPBinding;
+import javax.xml.bind.annotation.XmlSeeAlso;
+import javax.xml.ws.Holder;
+import javax.xml.ws.RequestWrapper;
+import javax.xml.ws.ResponseWrapper;
+import org.uddi.api_v3.AddPublisherAssertions;
+import org.uddi.api_v3.AssertionStatusItem;
+import org.uddi.api_v3.BindingDetail;
+import org.uddi.api_v3.BusinessDetail;
+import org.uddi.api_v3.CompletionStatus;
+import org.uddi.api_v3.DeleteBinding;
+import org.uddi.api_v3.DeleteBusiness;
+import org.uddi.api_v3.DeletePublisherAssertions;
+import org.uddi.api_v3.DeleteService;
+import org.uddi.api_v3.DeleteTModel;
+import org.uddi.api_v3.GetRegisteredInfo;
+import org.uddi.api_v3.PublisherAssertion;
+import org.uddi.api_v3.RegisteredInfo;
+import org.uddi.api_v3.SaveBinding;
+import org.uddi.api_v3.SaveBusiness;
+import org.uddi.api_v3.SaveService;
+import org.uddi.api_v3.SaveTModel;
+import org.uddi.api_v3.ServiceDetail;
+import org.uddi.api_v3.TModelDetail;
+
+
+/**
+ * This portType defines all of the UDDI publication operations.
+ * 
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.1.3-b02-
+ * Generated source version: 2.1
+ * 
+ */
+@WebService(name = "UDDI_Publication_PortType", targetNamespace = \
"urn:uddi-org:api_v3_portType") +@XmlSeeAlso({
+    org.uddi.policy_v3_instanceparms.ObjectFactory.class,
+    org.uddi.policy_v3.ObjectFactory.class,
+    org.w3._2000._09.xmldsig_.ObjectFactory.class,
+    org.uddi.api_v3.ObjectFactory.class,
+    org.uddi.custody_v3.ObjectFactory.class,
+    org.uddi.vscache_v3.ObjectFactory.class,
+    org.uddi.repl_v3.ObjectFactory.class,
+    org.uddi.sub_v3.ObjectFactory.class,
+    org.uddi.subr_v3.ObjectFactory.class,
+    org.uddi.vs_v3.ObjectFactory.class
+})
+public interface UDDIPublicationPortType {
+
+
+    /**
+     * 
+     * @param body
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "add_publisherAssertions", action = \
"add_publisherAssertions") +    @SOAPBinding(parameterStyle = \
SOAPBinding.ParameterStyle.BARE) +    public void addPublisherAssertions(
+        @WebParam(name = "add_publisherAssertions", targetNamespace = \
"urn:uddi-org:api_v3", partName = "body") +        AddPublisherAssertions body)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param body
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "delete_binding", action = "delete_binding")
+    @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+    public void deleteBinding(
+        @WebParam(name = "delete_binding", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +        DeleteBinding body)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param body
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "delete_business", action = "delete_business")
+    @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+    public void deleteBusiness(
+        @WebParam(name = "delete_business", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +        DeleteBusiness body)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param body
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "delete_publisherAssertions", action = \
"delete_publisherAssertions") +    @SOAPBinding(parameterStyle = \
SOAPBinding.ParameterStyle.BARE) +    public void deletePublisherAssertions(
+        @WebParam(name = "delete_publisherAssertions", targetNamespace = \
"urn:uddi-org:api_v3", partName = "body") +        DeletePublisherAssertions body)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param body
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "delete_service", action = "delete_service")
+    @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+    public void deleteService(
+        @WebParam(name = "delete_service", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +        DeleteService body)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param body
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "delete_tModel", action = "delete_tModel")
+    @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+    public void deleteTModel(
+        @WebParam(name = "delete_tModel", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +        DeleteTModel body)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param completionStatus
+     * @param authInfo
+     * @return
+     *     returns java.util.List<org.uddi.api_v3.AssertionStatusItem>
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "get_assertionStatusReport", action = \
"get_assertionStatusReport") +    @WebResult(name = "assertionStatusItem", \
targetNamespace = "urn:uddi-org:api_v3") +    @RequestWrapper(localName = \
"get_assertionStatusReport", targetNamespace = "urn:uddi-org:api_v3", className = \
"org.uddi.api_v3.GetAssertionStatusReport") +    @ResponseWrapper(localName = \
"assertionStatusReport", targetNamespace = "urn:uddi-org:api_v3", className = \
"org.uddi.api_v3.AssertionStatusReport") +    public List<AssertionStatusItem> \
getAssertionStatusReport( +        @WebParam(name = "authInfo", targetNamespace = \
"urn:uddi-org:api_v3") +        String authInfo,
+        @WebParam(name = "completionStatus", targetNamespace = \
"urn:uddi-org:api_v3") +        CompletionStatus completionStatus)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param authInfo
+     * @return
+     *     returns java.util.List<org.uddi.api_v3.PublisherAssertion>
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "get_publisherAssertions", action = \
"get_publisherAssertions") +    @WebResult(name = "publisherAssertion", \
targetNamespace = "urn:uddi-org:api_v3") +    @RequestWrapper(localName = \
"get_publisherAssertions", targetNamespace = "urn:uddi-org:api_v3", className = \
"org.uddi.api_v3.GetPublisherAssertions") +    @ResponseWrapper(localName = \
"publisherAssertions", targetNamespace = "urn:uddi-org:api_v3", className = \
"org.uddi.api_v3.PublisherAssertions") +    public List<PublisherAssertion> \
getPublisherAssertions( +        @WebParam(name = "authInfo", targetNamespace = \
"urn:uddi-org:api_v3") +        String authInfo)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v3.RegisteredInfo
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "get_registeredInfo", action = "get_registeredInfo")
+    @WebResult(name = "registeredInfo", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +    @SOAPBinding(parameterStyle = \
SOAPBinding.ParameterStyle.BARE) +    public RegisteredInfo getRegisteredInfo(
+        @WebParam(name = "get_registeredInfo", targetNamespace = \
"urn:uddi-org:api_v3", partName = "body") +        GetRegisteredInfo body)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v3.BindingDetail
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "save_binding", action = "save_binding")
+    @WebResult(name = "bindingDetail", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +    @SOAPBinding(parameterStyle = \
SOAPBinding.ParameterStyle.BARE) +    public BindingDetail saveBinding(
+        @WebParam(name = "save_binding", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +        SaveBinding body)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v3.BusinessDetail
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "save_business", action = "save_business")
+    @WebResult(name = "businessDetail", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +    @SOAPBinding(parameterStyle = \
SOAPBinding.ParameterStyle.BARE) +    public BusinessDetail saveBusiness(
+        @WebParam(name = "save_business", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +        SaveBusiness body)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v3.ServiceDetail
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "save_service", action = "save_service")
+    @WebResult(name = "serviceDetail", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +    @SOAPBinding(parameterStyle = \
SOAPBinding.ParameterStyle.BARE) +    public ServiceDetail saveService(
+        @WebParam(name = "save_service", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +        SaveService body)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v3.TModelDetail
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "save_tModel", action = "save_tModel")
+    @WebResult(name = "tModelDetail", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +    @SOAPBinding(parameterStyle = \
SOAPBinding.ParameterStyle.BARE) +    public TModelDetail saveTModel(
+        @WebParam(name = "save_tModel", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +        SaveTModel body)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param publisherAssertion
+     * @param authInfo
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "set_publisherAssertions", action = \
"set_publisherAssertions") +    @RequestWrapper(localName = \
"set_publisherAssertions", targetNamespace = "urn:uddi-org:api_v3", className = \
"org.uddi.api_v3.SetPublisherAssertions") +    @ResponseWrapper(localName = \
"publisherAssertions", targetNamespace = "urn:uddi-org:api_v3", className = \
"org.uddi.api_v3.PublisherAssertions") +    public void setPublisherAssertions(
+        @WebParam(name = "authInfo", targetNamespace = "urn:uddi-org:api_v3")
+        String authInfo,
+        @WebParam(name = "publisherAssertion", targetNamespace = \
"urn:uddi-org:api_v3", mode = WebParam.Mode.INOUT) +        \
Holder<List<PublisherAssertion>> publisherAssertion) +        throws \
DispositionReportFaultMessage +    ;
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDIReplicationPortType.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDIReplicationPortType.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDIReplicationPortType.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDIReplicationPortType.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,146 @@
+/*
+ * 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.uddi.v3_service;
+
+import java.math.BigInteger;
+import java.util.List;
+import javax.jws.WebMethod;
+import javax.jws.WebParam;
+import javax.jws.WebResult;
+import javax.jws.WebService;
+import javax.jws.soap.SOAPBinding;
+import javax.xml.bind.annotation.XmlSeeAlso;
+import javax.xml.ws.RequestWrapper;
+import javax.xml.ws.ResponseWrapper;
+import org.uddi.repl_v3.ChangeRecord;
+import org.uddi.repl_v3.ChangeRecordIDType;
+import org.uddi.repl_v3.DoPing;
+import org.uddi.repl_v3.HighWaterMarkVectorType;
+import org.uddi.repl_v3.NotifyChangeRecordsAvailable;
+import org.uddi.repl_v3.TransferCustody;
+
+
+/**
+ * This portType defines all of the UDDI replication operations.
+ * 
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.1.3-b02-
+ * Generated source version: 2.1
+ * 
+ */
+@WebService(name = "UDDI_Replication_PortType", targetNamespace = \
"urn:uddi-org:repl_v3_portType") +@XmlSeeAlso({
+    org.uddi.policy_v3_instanceparms.ObjectFactory.class,
+    org.uddi.policy_v3.ObjectFactory.class,
+    org.w3._2000._09.xmldsig_.ObjectFactory.class,
+    org.uddi.api_v3.ObjectFactory.class,
+    org.uddi.custody_v3.ObjectFactory.class,
+    org.uddi.vscache_v3.ObjectFactory.class,
+    org.uddi.repl_v3.ObjectFactory.class,
+    org.uddi.sub_v3.ObjectFactory.class,
+    org.uddi.subr_v3.ObjectFactory.class,
+    org.uddi.vs_v3.ObjectFactory.class
+})
+public interface UDDIReplicationPortType {
+
+
+    /**
+     * 
+     * @param responseLimitVector
+     * @param requestingNode
+     * @param changesAlreadySeen
+     * @param responseLimitCount
+     * @return
+     *     returns java.util.List<org.uddi.repl_v3.ChangeRecord>
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "get_changeRecords", action = "get_changeRecords")
+    @WebResult(name = "changeRecord", targetNamespace = "urn:uddi-org:repl_v3")
+    @RequestWrapper(localName = "get_changeRecords", targetNamespace = \
"urn:uddi-org:repl_v3", className = "org.uddi.repl_v3.GetChangeRecords") +    \
@ResponseWrapper(localName = "changeRecords", targetNamespace = \
"urn:uddi-org:repl_v3", className = "org.uddi.repl_v3.ChangeRecords") +    public \
List<ChangeRecord> getChangeRecords( +        @WebParam(name = "requestingNode", \
targetNamespace = "urn:uddi-org:repl_v3") +        String requestingNode,
+        @WebParam(name = "changesAlreadySeen", targetNamespace = \
"urn:uddi-org:repl_v3") +        HighWaterMarkVectorType changesAlreadySeen,
+        @WebParam(name = "responseLimitCount", targetNamespace = \
"urn:uddi-org:repl_v3") +        BigInteger responseLimitCount,
+        @WebParam(name = "responseLimitVector", targetNamespace = \
"urn:uddi-org:repl_v3") +        HighWaterMarkVectorType responseLimitVector)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param body
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "notify_changeRecordsAvailable", action = \
"notify_changeRecordsAvailable") +    @SOAPBinding(parameterStyle = \
SOAPBinding.ParameterStyle.BARE) +    public void notifyChangeRecordsAvailable(
+        @WebParam(name = "notify_changeRecordsAvailable", targetNamespace = \
"urn:uddi-org:repl_v3", partName = "body") +        NotifyChangeRecordsAvailable \
body) +        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns java.lang.String
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "do_ping", action = "do_ping")
+    @WebResult(name = "operatorNodeID", targetNamespace = "urn:uddi-org:repl_v3", \
partName = "body") +    @SOAPBinding(parameterStyle = \
SOAPBinding.ParameterStyle.BARE) +    public String doPing(
+        @WebParam(name = "do_ping", targetNamespace = "urn:uddi-org:repl_v3", \
partName = "body") +        DoPing body)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @return
+     *     returns java.util.List<org.uddi.repl_v3.ChangeRecordIDType>
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "get_highWaterMarks", action = "get_highWaterMarks")
+    @WebResult(name = "highWaterMark", targetNamespace = "urn:uddi-org:repl_v3")
+    @RequestWrapper(localName = "get_highWaterMarks", targetNamespace = \
"urn:uddi-org:repl_v3", className = "org.uddi.repl_v3.GetHighWaterMarks") +    \
@ResponseWrapper(localName = "highWaterMarks", targetNamespace = \
"urn:uddi-org:repl_v3", className = "org.uddi.repl_v3.HighWaterMarkVectorType") +    \
public List<ChangeRecordIDType> getHighWaterMarks() +        throws \
DispositionReportFaultMessage +    ;
+
+    /**
+     * 
+     * @param body
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "transfer_custody", action = "transfer_custody")
+    @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+    public void transferCustody(
+        @WebParam(name = "transfer_custody", targetNamespace = \
"urn:uddi-org:repl_v3", partName = "body") +        TransferCustody body)
+        throws DispositionReportFaultMessage
+    ;
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDISecurityPortType.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDISecurityPortType.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDISecurityPortType.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDISecurityPortType.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,85 @@
+/*
+ * 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.uddi.v3_service;
+
+import javax.jws.WebMethod;
+import javax.jws.WebParam;
+import javax.jws.WebResult;
+import javax.jws.WebService;
+import javax.jws.soap.SOAPBinding;
+import javax.xml.bind.annotation.XmlSeeAlso;
+import org.uddi.api_v3.AuthToken;
+import org.uddi.api_v3.DiscardAuthToken;
+import org.uddi.api_v3.GetAuthToken;
+
+
+/**
+ * This portType defines all of the UDDI security operations.
+ * 
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.1.3-b02-
+ * Generated source version: 2.1
+ * 
+ */
+@WebService(name = "UDDI_Security_PortType", targetNamespace = \
"urn:uddi-org:api_v3_portType") +@SOAPBinding(parameterStyle = \
SOAPBinding.ParameterStyle.BARE) +@XmlSeeAlso({
+    org.uddi.policy_v3_instanceparms.ObjectFactory.class,
+    org.uddi.policy_v3.ObjectFactory.class,
+    org.w3._2000._09.xmldsig_.ObjectFactory.class,
+    org.uddi.api_v3.ObjectFactory.class,
+    org.uddi.custody_v3.ObjectFactory.class,
+    org.uddi.vscache_v3.ObjectFactory.class,
+    org.uddi.repl_v3.ObjectFactory.class,
+    org.uddi.sub_v3.ObjectFactory.class,
+    org.uddi.subr_v3.ObjectFactory.class,
+    org.uddi.vs_v3.ObjectFactory.class
+})
+public interface UDDISecurityPortType {
+
+
+    /**
+     * 
+     * @param body
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "discard_authToken", action = "discard_authToken")
+    public void discardAuthToken(
+        @WebParam(name = "discard_authToken", targetNamespace = \
"urn:uddi-org:api_v3", partName = "body") +        DiscardAuthToken body)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v3.AuthToken
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "get_authToken", action = "get_authToken")
+    @WebResult(name = "authToken", targetNamespace = "urn:uddi-org:api_v3", partName \
= "body") +    public AuthToken getAuthToken(
+        @WebParam(name = "get_authToken", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +        GetAuthToken body)
+        throws DispositionReportFaultMessage
+    ;
+
+}
+
\ No newline at end of file



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


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic