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

svn commit: r1559910 [8/9] - in /juddi/trunk: juddi-client/src/main/java/org/apache/juddi/v3/client/ juddi-client/src/main/java/org/apache/juddi/v3/client/config/ juddi-client/src/main/java/org/apache/juddi/v3/client/mapping/ juddi-client/src/main/java...

Added: juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/TModelInstanceDetails.java
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/TModelInstanceDetails.java?rev=1559910&view=auto
==============================================================================
--- juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/TModelInstanceDetails.java (added)
+++ juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/TModelInstanceDetails.java Tue Jan 21 02:57:32 2014
@@ -0,0 +1,82 @@
+/*
+ * 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.api_v2;
+
+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 tModelInstanceDetails complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="tModelInstanceDetails">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element ref="{urn:uddi-org:api_v2}tModelInstanceInfo" maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "tModelInstanceDetails", propOrder = {
+    "tModelInstanceInfo"
+})
+public class TModelInstanceDetails {
+
+    protected List<TModelInstanceInfo> tModelInstanceInfo;
+
+    /**
+     * Gets the value of the tModelInstanceInfo 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 tModelInstanceInfo property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getTModelInstanceInfo().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link TModelInstanceInfo }
+     * 
+     * 
+     */
+    public List<TModelInstanceInfo> getTModelInstanceInfo() {
+        if (tModelInstanceInfo == null) {
+            tModelInstanceInfo = new ArrayList<TModelInstanceInfo>();
+        }
+        return this.tModelInstanceInfo;
+    }
+
+}

Added: juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/TModelInstanceInfo.java
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/TModelInstanceInfo.java?rev=1559910&view=auto
==============================================================================
--- juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/TModelInstanceInfo.java (added)
+++ juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/TModelInstanceInfo.java Tue Jan 21 02:57:32 2014
@@ -0,0 +1,137 @@
+/*
+ * 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.api_v2;
+
+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.XmlType;
+
+
+/**
+ * <p>Java class for tModelInstanceInfo complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="tModelInstanceInfo">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element ref="{urn:uddi-org:api_v2}description" maxOccurs="unbounded" minOccurs="0"/>
+ *         &lt;element ref="{urn:uddi-org:api_v2}instanceDetails" minOccurs="0"/>
+ *       &lt;/sequence>
+ *       &lt;attribute name="tModelKey" use="required" type="{urn:uddi-org:api_v2}tModelKey" />
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "tModelInstanceInfo", propOrder = {
+    "description",
+    "instanceDetails"
+})
+public class TModelInstanceInfo {
+
+    protected List<Description> description;
+    protected InstanceDetails instanceDetails;
+    @XmlAttribute(name = "tModelKey", required = true)
+    protected String tModelKey;
+
+    /**
+     * Gets the value of the description 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 description property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getDescription().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link Description }
+     * 
+     * 
+     */
+    public List<Description> getDescription() {
+        if (description == null) {
+            description = new ArrayList<Description>();
+        }
+        return this.description;
+    }
+
+    /**
+     * Gets the value of the instanceDetails property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link InstanceDetails }
+     *     
+     */
+    public InstanceDetails getInstanceDetails() {
+        return instanceDetails;
+    }
+
+    /**
+     * Sets the value of the instanceDetails property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link InstanceDetails }
+     *     
+     */
+    public void setInstanceDetails(InstanceDetails value) {
+        this.instanceDetails = value;
+    }
+
+    /**
+     * Gets the value of the tModelKey property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getTModelKey() {
+        return tModelKey;
+    }
+
+    /**
+     * Sets the value of the tModelKey property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setTModelKey(String value) {
+        this.tModelKey = value;
+    }
+
+}

Added: juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/TModelList.java
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/TModelList.java?rev=1559910&view=auto
==============================================================================
--- juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/TModelList.java (added)
+++ juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/TModelList.java Tue Jan 21 02:57:32 2014
@@ -0,0 +1,159 @@
+/*
+ * 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.api_v2;
+
+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;
+
+
+/**
+ * <p>Java class for tModelList complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="tModelList">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element ref="{urn:uddi-org:api_v2}tModelInfos"/>
+ *       &lt;/sequence>
+ *       &lt;attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *       &lt;attribute name="operator" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *       &lt;attribute name="truncated" type="{urn:uddi-org:api_v2}truncated" />
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "tModelList", propOrder = {
+    "tModelInfos"
+})
+public class TModelList {
+
+    @XmlElement(required = true)
+    protected TModelInfos tModelInfos;
+    @XmlAttribute(name = "generic", required = true)
+    protected String generic;
+    @XmlAttribute(name = "operator", required = true)
+    protected String operator;
+    @XmlAttribute(name = "truncated")
+    protected Truncated truncated;
+
+    /**
+     * Gets the value of the tModelInfos property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link TModelInfos }
+     *     
+     */
+    public TModelInfos getTModelInfos() {
+        return tModelInfos;
+    }
+
+    /**
+     * Sets the value of the tModelInfos property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link TModelInfos }
+     *     
+     */
+    public void setTModelInfos(TModelInfos value) {
+        this.tModelInfos = value;
+    }
+
+    /**
+     * Gets the value of the generic property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getGeneric() {
+        return generic;
+    }
+
+    /**
+     * Sets the value of the generic property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setGeneric(String value) {
+        this.generic = value;
+    }
+
+    /**
+     * Gets the value of the operator property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getOperator() {
+        return operator;
+    }
+
+    /**
+     * Sets the value of the operator property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setOperator(String value) {
+        this.operator = value;
+    }
+
+    /**
+     * Gets the value of the truncated property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Truncated }
+     *     
+     */
+    public Truncated getTruncated() {
+        return truncated;
+    }
+
+    /**
+     * Sets the value of the truncated property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Truncated }
+     *     
+     */
+    public void setTruncated(Truncated value) {
+        this.truncated = value;
+    }
+
+}

Added: juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/Truncated.java
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/Truncated.java?rev=1559910&view=auto
==============================================================================
--- juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/Truncated.java (added)
+++ juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/Truncated.java Tue Jan 21 02:57:32 2014
@@ -0,0 +1,66 @@
+/*
+ * 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.api_v2;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlEnumValue;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for truncated.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * &lt;simpleType name="truncated">
+ *   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
+ *     &lt;enumeration value="true"/>
+ *     &lt;enumeration value="false"/>
+ *   &lt;/restriction>
+ * &lt;/simpleType>
+ * </pre>
+ * 
+ */
+@XmlType(name = "truncated")
+@XmlEnum
+public enum Truncated {
+
+    @XmlEnumValue("true")
+    TRUE("true"),
+    @XmlEnumValue("false")
+    FALSE("false");
+    private final String value;
+
+    Truncated(String v) {
+        value = v;
+    }
+
+    public String value() {
+        return value;
+    }
+
+    public static Truncated fromValue(String v) {
+        for (Truncated c: Truncated.values()) {
+            if (c.value.equals(v)) {
+                return c;
+            }
+        }
+        throw new IllegalArgumentException(v);
+    }
+
+}

Added: juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/URLType.java
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/URLType.java?rev=1559910&view=auto
==============================================================================
--- juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/URLType.java (added)
+++ juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/URLType.java Tue Jan 21 02:57:32 2014
@@ -0,0 +1,81 @@
+/*
+ * 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.api_v2;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlEnumValue;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for URLType.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * &lt;simpleType name="URLType">
+ *   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
+ *     &lt;enumeration value="mailto"/>
+ *     &lt;enumeration value="http"/>
+ *     &lt;enumeration value="https"/>
+ *     &lt;enumeration value="ftp"/>
+ *     &lt;enumeration value="fax"/>
+ *     &lt;enumeration value="phone"/>
+ *     &lt;enumeration value="other"/>
+ *   &lt;/restriction>
+ * &lt;/simpleType>
+ * </pre>
+ * 
+ */
+@XmlType(name = "URLType")
+@XmlEnum
+public enum URLType {
+
+    @XmlEnumValue("mailto")
+    MAILTO("mailto"),
+    @XmlEnumValue("http")
+    HTTP("http"),
+    @XmlEnumValue("https")
+    HTTPS("https"),
+    @XmlEnumValue("ftp")
+    FTP("ftp"),
+    @XmlEnumValue("fax")
+    FAX("fax"),
+    @XmlEnumValue("phone")
+    PHONE("phone"),
+    @XmlEnumValue("other")
+    OTHER("other");
+    private final String value;
+
+    URLType(String v) {
+        value = v;
+    }
+
+    public String value() {
+        return value;
+    }
+
+    public static URLType fromValue(String v) {
+        for (URLType c: URLType.values()) {
+            if (c.value.equals(v)) {
+                return c;
+            }
+        }
+        throw new IllegalArgumentException(v);
+    }
+
+}

Added: juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/ValidateValues.java
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/ValidateValues.java?rev=1559910&view=auto
==============================================================================
--- juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/ValidateValues.java (added)
+++ juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/ValidateValues.java Tue Jan 21 02:57:32 2014
@@ -0,0 +1,174 @@
+/*
+ * 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.api_v2;
+
+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.XmlType;
+
+
+/**
+ * <p>Java class for validate_values complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="validate_values">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;choice>
+ *         &lt;element ref="{urn:uddi-org:api_v2}businessEntity" maxOccurs="unbounded" minOccurs="0"/>
+ *         &lt;element ref="{urn:uddi-org:api_v2}businessService" maxOccurs="unbounded" minOccurs="0"/>
+ *         &lt;element ref="{urn:uddi-org:api_v2}tModel" maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/choice>
+ *       &lt;attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "validate_values", propOrder = {
+    "businessEntity",
+    "businessService",
+    "tModel"
+})
+public class ValidateValues {
+
+    protected List<BusinessEntity> businessEntity;
+    protected List<BusinessService> businessService;
+    protected List<TModel> tModel;
+    @XmlAttribute(name = "generic", required = true)
+    protected String generic;
+
+    /**
+     * Gets the value of the businessEntity 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 businessEntity property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getBusinessEntity().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link BusinessEntity }
+     * 
+     * 
+     */
+    public List<BusinessEntity> getBusinessEntity() {
+        if (businessEntity == null) {
+            businessEntity = new ArrayList<BusinessEntity>();
+        }
+        return this.businessEntity;
+    }
+
+    /**
+     * Gets the value of the businessService 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 businessService property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getBusinessService().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link BusinessService }
+     * 
+     * 
+     */
+    public List<BusinessService> getBusinessService() {
+        if (businessService == null) {
+            businessService = new ArrayList<BusinessService>();
+        }
+        return this.businessService;
+    }
+
+    /**
+     * Gets the value of the tModel 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 tModel property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getTModel().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link TModel }
+     * 
+     * 
+     */
+    public List<TModel> getTModel() {
+        if (tModel == null) {
+            tModel = new ArrayList<TModel>();
+        }
+        return this.tModel;
+    }
+
+    /**
+     * Gets the value of the generic property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getGeneric() {
+        return generic;
+    }
+
+    /**
+     * Sets the value of the generic property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setGeneric(String value) {
+        this.generic = value;
+    }
+
+}

Added: juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/package-info.java
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/package-info.java?rev=1559910&view=auto
==============================================================================
--- juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/package-info.java (added)
+++ juddi/trunk/uddi-ws/src/main/java/org/uddi/api_v2/package-info.java Tue Jan 21 02:57:32 2014
@@ -0,0 +1,18 @@
+/*
+ * 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:api_v2", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
+package org.uddi.api_v2;

Added: juddi/trunk/uddi-ws/src/main/java/org/uddi/v2_service/DispositionReport.java
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/src/main/java/org/uddi/v2_service/DispositionReport.java?rev=1559910&view=auto
==============================================================================
--- juddi/trunk/uddi-ws/src/main/java/org/uddi/v2_service/DispositionReport.java (added)
+++ juddi/trunk/uddi-ws/src/main/java/org/uddi/v2_service/DispositionReport.java Tue Jan 21 02:57:32 2014
@@ -0,0 +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.uddi.v2_service;
+
+import javax.xml.ws.WebFault;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.4-b01
+ * Generated source version: 2.2
+ * 
+ */
+@WebFault(name = "dispositionReport", targetNamespace = "urn:uddi-org:api_v2")
+public class DispositionReport
+    extends Exception
+{
+
+    /**
+     * Java type that goes as soapenv:Fault detail element.
+     * 
+     */
+    private org.uddi.api_v2.DispositionReport faultInfo;
+
+    /**
+     * 
+     * @param message
+     * @param faultInfo
+     */
+    public DispositionReport(String message, org.uddi.api_v2.DispositionReport faultInfo) {
+        super(message);
+        this.faultInfo = faultInfo;
+    }
+
+    /**
+     * 
+     * @param message
+     * @param faultInfo
+     * @param cause
+     */
+    public DispositionReport(String message, org.uddi.api_v2.DispositionReport faultInfo, Throwable cause) {
+        super(message, cause);
+        this.faultInfo = faultInfo;
+    }
+
+    /**
+     * 
+     * @return
+     *     returns fault bean: org.uddi.api_v2.DispositionReport
+     */
+    public org.uddi.api_v2.DispositionReport getFaultInfo() {
+        return faultInfo;
+    }
+
+}

Added: juddi/trunk/uddi-ws/src/main/java/org/uddi/v2_service/Inquire.java
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/src/main/java/org/uddi/v2_service/Inquire.java?rev=1559910&view=auto
==============================================================================
--- juddi/trunk/uddi-ws/src/main/java/org/uddi/v2_service/Inquire.java (added)
+++ juddi/trunk/uddi-ws/src/main/java/org/uddi/v2_service/Inquire.java Tue Jan 21 02:57:32 2014
@@ -0,0 +1,215 @@
+/*
+ * 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.v2_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_v2.BindingDetail;
+import org.uddi.api_v2.BusinessDetail;
+import org.uddi.api_v2.BusinessDetailExt;
+import org.uddi.api_v2.BusinessList;
+import org.uddi.api_v2.FindBinding;
+import org.uddi.api_v2.FindBusiness;
+import org.uddi.api_v2.FindRelatedBusinesses;
+import org.uddi.api_v2.FindService;
+import org.uddi.api_v2.FindTModel;
+import org.uddi.api_v2.GetBindingDetail;
+import org.uddi.api_v2.GetBusinessDetail;
+import org.uddi.api_v2.GetBusinessDetailExt;
+import org.uddi.api_v2.GetServiceDetail;
+import org.uddi.api_v2.GetTModelDetail;
+import org.uddi.api_v2.ObjectFactory;
+import org.uddi.api_v2.RelatedBusinessesList;
+import org.uddi.api_v2.ServiceDetail;
+import org.uddi.api_v2.ServiceList;
+import org.uddi.api_v2.TModelDetail;
+import org.uddi.api_v2.TModelList;
+
+
+/**
+ * 
+ * 			This portType defines all of the UDDI inquiry operations.
+ * 	  
+ * 
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.4-b01
+ * Generated source version: 2.2
+ * 
+ */
+@WebService(name = "Inquire", targetNamespace = "urn:uddi-org:inquiry_v2")
+@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+@XmlSeeAlso({
+    ObjectFactory.class
+})
+public interface Inquire {
+
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.BindingDetail
+     * @throws DispositionReport
+     */
+    @WebMethod(operationName = "find_binding", action = "find_binding")
+    @WebResult(name = "bindingDetail", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public BindingDetail findBinding(
+        @WebParam(name = "find_binding", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        FindBinding body)
+        throws DispositionReport
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.BusinessList
+     * @throws DispositionReport
+     */
+    @WebMethod(operationName = "find_business", action = "find_business")
+    @WebResult(name = "businessList", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public BusinessList findBusiness(
+        @WebParam(name = "find_business", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        FindBusiness body)
+        throws DispositionReport
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.RelatedBusinessesList
+     * @throws DispositionReport
+     */
+    @WebMethod(operationName = "find_relatedBusinesses", action = "find_relatedBusinesses")
+    @WebResult(name = "relatedBusinessesList", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public RelatedBusinessesList findRelatedBusinesses(
+        @WebParam(name = "find_relatedBusinesses", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        FindRelatedBusinesses body)
+        throws DispositionReport
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.ServiceList
+     * @throws DispositionReport
+     */
+    @WebMethod(operationName = "find_service", action = "find_service")
+    @WebResult(name = "serviceList", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public ServiceList findService(
+        @WebParam(name = "find_service", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        FindService body)
+        throws DispositionReport
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.TModelList
+     * @throws DispositionReport
+     */
+    @WebMethod(operationName = "find_tModel", action = "find_tModel")
+    @WebResult(name = "tModelList", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public TModelList findTModel(
+        @WebParam(name = "find_tModel", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        FindTModel body)
+        throws DispositionReport
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.BindingDetail
+     * @throws DispositionReport
+     */
+    @WebMethod(operationName = "get_bindingDetail", action = "get_bindingDetail")
+    @WebResult(name = "bindingDetail", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public BindingDetail getBindingDetail(
+        @WebParam(name = "get_bindingDetail", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        GetBindingDetail body)
+        throws DispositionReport
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.BusinessDetail
+     * @throws DispositionReport
+     */
+    @WebMethod(operationName = "get_businessDetail", action = "get_businessDetail")
+    @WebResult(name = "businessDetail", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public BusinessDetail getBusinessDetail(
+        @WebParam(name = "get_businessDetail", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        GetBusinessDetail body)
+        throws DispositionReport
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.BusinessDetailExt
+     * @throws DispositionReport
+     */
+    @WebMethod(operationName = "get_businessDetailExt", action = "get_businessDetailExt")
+    @WebResult(name = "businessDetailExt", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public BusinessDetailExt getBusinessDetailExt(
+        @WebParam(name = "get_businessDetailExt", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        GetBusinessDetailExt body)
+        throws DispositionReport
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.ServiceDetail
+     * @throws DispositionReport
+     */
+    @WebMethod(operationName = "get_serviceDetail", action = "get_serviceDetail")
+    @WebResult(name = "serviceDetail", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public ServiceDetail getServiceDetail(
+        @WebParam(name = "get_serviceDetail", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        GetServiceDetail body)
+        throws DispositionReport
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.TModelDetail
+     * @throws DispositionReport
+     */
+    @WebMethod(operationName = "get_tModelDetail", action = "get_tModelDetail")
+    @WebResult(name = "tModelDetail", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public TModelDetail getTModelDetail(
+        @WebParam(name = "get_tModelDetail", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        GetTModelDetail body)
+        throws DispositionReport
+    ;
+
+}

Added: juddi/trunk/uddi-ws/src/main/java/org/uddi/v2_service/Publish.java
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/src/main/java/org/uddi/v2_service/Publish.java?rev=1559910&view=auto
==============================================================================
--- juddi/trunk/uddi-ws/src/main/java/org/uddi/v2_service/Publish.java (added)
+++ juddi/trunk/uddi-ws/src/main/java/org/uddi/v2_service/Publish.java Tue Jan 21 02:57:32 2014
@@ -0,0 +1,310 @@
+/*
+ * 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.v2_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_v2.AddPublisherAssertions;
+import org.uddi.api_v2.AssertionStatusReport;
+import org.uddi.api_v2.AuthToken;
+import org.uddi.api_v2.BindingDetail;
+import org.uddi.api_v2.BusinessDetail;
+import org.uddi.api_v2.DeleteBinding;
+import org.uddi.api_v2.DeleteBusiness;
+import org.uddi.api_v2.DeletePublisherAssertions;
+import org.uddi.api_v2.DeleteService;
+import org.uddi.api_v2.DeleteTModel;
+import org.uddi.api_v2.DiscardAuthToken;
+import org.uddi.api_v2.GetAssertionStatusReport;
+import org.uddi.api_v2.GetAuthToken;
+import org.uddi.api_v2.GetPublisherAssertions;
+import org.uddi.api_v2.GetRegisteredInfo;
+import org.uddi.api_v2.ObjectFactory;
+import org.uddi.api_v2.PublisherAssertions;
+import org.uddi.api_v2.RegisteredInfo;
+import org.uddi.api_v2.SaveBinding;
+import org.uddi.api_v2.SaveBusiness;
+import org.uddi.api_v2.SaveService;
+import org.uddi.api_v2.SaveTModel;
+import org.uddi.api_v2.ServiceDetail;
+import org.uddi.api_v2.SetPublisherAssertions;
+import org.uddi.api_v2.TModelDetail;
+
+
+/**
+ * 
+ * 			This portType defines all of the UDDI publish operations.
+ * 	  
+ * 
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.4-b01
+ * Generated source version: 2.2
+ * 
+ */
+@WebService(name = "Publish", targetNamespace = "urn:uddi-org:publication_v2")
+@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
+@XmlSeeAlso({
+    ObjectFactory.class
+})
+public interface Publish {
+
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.DispositionReport
+     * @throws org.uddi.v2_service.DispositionReport
+     */
+    @WebMethod(operationName = "add_publisherAssertions", action = "add_publisherAssertions")
+    @WebResult(name = "dispositionReport", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public org.uddi.api_v2.DispositionReport addPublisherAssertions(
+        @WebParam(name = "add_publisherAssertions", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        AddPublisherAssertions body)
+        throws org.uddi.v2_service.DispositionReport
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.DispositionReport
+     * @throws org.uddi.v2_service.DispositionReport
+     */
+    @WebMethod(operationName = "delete_binding", action = "delete_binding")
+    @WebResult(name = "dispositionReport", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public org.uddi.api_v2.DispositionReport deleteBinding(
+        @WebParam(name = "delete_binding", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        DeleteBinding body)
+        throws org.uddi.v2_service.DispositionReport
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.DispositionReport
+     * @throws org.uddi.v2_service.DispositionReport
+     */
+    @WebMethod(operationName = "delete_business", action = "delete_business")
+    @WebResult(name = "dispositionReport", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public org.uddi.api_v2.DispositionReport deleteBusiness(
+        @WebParam(name = "delete_business", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        DeleteBusiness body)
+        throws org.uddi.v2_service.DispositionReport
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.DispositionReport
+     * @throws org.uddi.v2_service.DispositionReport
+     */
+    @WebMethod(operationName = "delete_publisherAssertions", action = "delete_publisherAssertions")
+    @WebResult(name = "dispositionReport", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public org.uddi.api_v2.DispositionReport deletePublisherAssertions(
+        @WebParam(name = "delete_publisherAssertions", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        DeletePublisherAssertions body)
+        throws org.uddi.v2_service.DispositionReport
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.DispositionReport
+     * @throws org.uddi.v2_service.DispositionReport
+     */
+    @WebMethod(operationName = "delete_service", action = "delete_service")
+    @WebResult(name = "dispositionReport", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public org.uddi.api_v2.DispositionReport deleteService(
+        @WebParam(name = "delete_service", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        DeleteService body)
+        throws org.uddi.v2_service.DispositionReport
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.DispositionReport
+     * @throws org.uddi.v2_service.DispositionReport
+     */
+    @WebMethod(operationName = "delete_tModel", action = "delete_tModel")
+    @WebResult(name = "dispositionReport", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public org.uddi.api_v2.DispositionReport deleteTModel(
+        @WebParam(name = "delete_tModel", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        DeleteTModel body)
+        throws org.uddi.v2_service.DispositionReport
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.DispositionReport
+     * @throws org.uddi.v2_service.DispositionReport
+     */
+    @WebMethod(operationName = "discard_authToken", action = "discard_authToken")
+    @WebResult(name = "dispositionReport", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public org.uddi.api_v2.DispositionReport discardAuthToken(
+        @WebParam(name = "discard_authToken", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        DiscardAuthToken body)
+        throws org.uddi.v2_service.DispositionReport
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.AssertionStatusReport
+     * @throws org.uddi.v2_service.DispositionReport
+     */
+    @WebMethod(operationName = "get_assertionStatusReport", action = "get_assertionStatusReport")
+    @WebResult(name = "assertionStatusReport", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public AssertionStatusReport getAssertionStatusReport(
+        @WebParam(name = "get_assertionStatusReport", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        GetAssertionStatusReport body)
+        throws org.uddi.v2_service.DispositionReport
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.AuthToken
+     * @throws org.uddi.v2_service.DispositionReport
+     */
+    @WebMethod(operationName = "get_authToken", action = "get_authToken")
+    @WebResult(name = "authToken", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public AuthToken getAuthToken(
+        @WebParam(name = "get_authToken", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        GetAuthToken body)
+        throws org.uddi.v2_service.DispositionReport
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.PublisherAssertions
+     * @throws org.uddi.v2_service.DispositionReport
+     */
+    @WebMethod(operationName = "get_publisherAssertions", action = "get_publisherAssertions")
+    @WebResult(name = "publisherAssertions", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public PublisherAssertions getPublisherAssertions(
+        @WebParam(name = "get_publisherAssertions", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        GetPublisherAssertions body)
+        throws org.uddi.v2_service.DispositionReport
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.RegisteredInfo
+     * @throws org.uddi.v2_service.DispositionReport
+     */
+    @WebMethod(operationName = "get_registeredInfo", action = "get_registeredInfo")
+    @WebResult(name = "registeredInfo", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public RegisteredInfo getRegisteredInfo(
+        @WebParam(name = "get_registeredInfo", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        GetRegisteredInfo body)
+        throws org.uddi.v2_service.DispositionReport
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.BindingDetail
+     * @throws org.uddi.v2_service.DispositionReport
+     */
+    @WebMethod(operationName = "save_binding", action = "save_binding")
+    @WebResult(name = "bindingDetail", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public BindingDetail saveBinding(
+        @WebParam(name = "save_binding", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        SaveBinding body)
+        throws org.uddi.v2_service.DispositionReport
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.BusinessDetail
+     * @throws org.uddi.v2_service.DispositionReport
+     */
+    @WebMethod(operationName = "save_business", action = "save_business")
+    @WebResult(name = "businessDetail", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public BusinessDetail saveBusiness(
+        @WebParam(name = "save_business", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        SaveBusiness body)
+        throws org.uddi.v2_service.DispositionReport
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.ServiceDetail
+     * @throws org.uddi.v2_service.DispositionReport
+     */
+    @WebMethod(operationName = "save_service", action = "save_service")
+    @WebResult(name = "serviceDetail", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public ServiceDetail saveService(
+        @WebParam(name = "save_service", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        SaveService body)
+        throws org.uddi.v2_service.DispositionReport
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.TModelDetail
+     * @throws org.uddi.v2_service.DispositionReport
+     */
+    @WebMethod(operationName = "save_tModel", action = "save_tModel")
+    @WebResult(name = "tModelDetail", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public TModelDetail saveTModel(
+        @WebParam(name = "save_tModel", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        SaveTModel body)
+        throws org.uddi.v2_service.DispositionReport
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v2.PublisherAssertions
+     * @throws org.uddi.v2_service.DispositionReport
+     */
+    @WebMethod(operationName = "set_publisherAssertions", action = "set_publisherAssertions")
+    @WebResult(name = "publisherAssertions", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+    public PublisherAssertions setPublisherAssertions(
+        @WebParam(name = "set_publisherAssertions", targetNamespace = "urn:uddi-org:api_v2", partName = "body")
+        SetPublisherAssertions body)
+        throws org.uddi.v2_service.DispositionReport
+    ;
+
+}

Added: juddi/trunk/uddi-ws/src/main/java/org/uddi/v2_service/package-info.java
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/src/main/java/org/uddi/v2_service/package-info.java?rev=1559910&view=auto
==============================================================================
--- juddi/trunk/uddi-ws/src/main/java/org/uddi/v2_service/package-info.java (added)
+++ juddi/trunk/uddi-ws/src/main/java/org/uddi/v2_service/package-info.java Tue Jan 21 02:57:32 2014
@@ -0,0 +1,33 @@
+/*
+ * 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.
+ *
+ */
+/**
+ * 
+ * 		Copyright (c) 2000 - 2002 by Accenture, Ariba, Inc., Commerce One, Inc. 
+ * 		Fujitsu Limited, Hewlett-Packard Company, i2 Technologies, Inc., 
+ * 		Intel Corporation, International Business Machines Corporation,  
+ * 		Microsoft Corporation, Oracle Corporation, SAP AG, Sun Microsystems, Inc., 
+ * 		and VeriSign, Inc.  All Rights Reserved.
+ * 		
+ * 		WSDL Service Interface for UDDI Publication API V2.0
+ * 		
+ * 		This WSDL document defines the publication API calls for interacting with 
+ * 		the UDDI registry.  The complete UDDI API specification is available
+ * 		at http://www.uddi.org/specification.html.
+ * 	
+ * 
+ */
+package org.uddi.v2_service;

Added: juddi/trunk/uddi-ws/src/main/resources/inquire_v2.wsdl
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/src/main/resources/inquire_v2.wsdl?rev=1559910&view=auto
==============================================================================
--- juddi/trunk/uddi-ws/src/main/resources/inquire_v2.wsdl (added)
+++ juddi/trunk/uddi-ws/src/main/resources/inquire_v2.wsdl Tue Jan 21 02:57:32 2014
@@ -0,0 +1,261 @@
+<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="urn:uddi-org:inquiry_v2" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:uddi="urn:uddi-org:api_v2" targetNamespace="urn:uddi-org:inquiry_v2" name="UDDI_Inquiry_API_V2">
+	<documentation>
+		Copyright (c) 2000 - 2002 by Accenture, Ariba, Inc., Commerce One, Inc. 
+		Fujitsu Limited, Hewlett-Packard Company, i2 Technologies, Inc., 
+		Intel Corporation, International Business Machines Corporation,  
+		Microsoft Corporation, Oracle Corporation, SAP AG, Sun Microsystems, Inc., 
+		and VeriSign, Inc.  All Rights Reserved.
+		
+		WSDL Service Interface for UDDI Inquiry API V2.0    
+		
+		This WSDL document defines the inquiry API calls for interacting with 
+		the UDDI registry.  The complete UDDI API specification is available
+		at http://www.uddi.org/specification.html.
+	</documentation>
+	<types>
+		<xsd:schema targetNamespace="urn:uddi-org:inquiry_v2" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+			<xsd:import namespace="urn:uddi-org:api_v2" schemaLocation="uddi_v2.xsd"/>
+		</xsd:schema>
+	</types>
+	<message name="bindingDetail">
+		<part name="body" element="uddi:bindingDetail"/>
+	</message>
+	<message name="businessDetail">
+		<part name="body" element="uddi:businessDetail"/>
+	</message>
+	<message name="businessDetailExt">
+		<part name="body" element="uddi:businessDetailExt"/>
+	</message>
+	<message name="businessList">
+		<part name="body" element="uddi:businessList"/>
+	</message>
+	<message name="dispositionReport">
+		<part name="body" element="uddi:dispositionReport"/>
+	</message>
+	<message name="find_binding">
+		<part name="body" element="uddi:find_binding"/>
+	</message>
+	<message name="find_business">
+		<part name="body" element="uddi:find_business"/>
+	</message>
+	<message name="find_relatedBusinesses">
+		<part name="body" element="uddi:find_relatedBusinesses"/>
+	</message>
+	<message name="find_service">
+		<part name="body" element="uddi:find_service"/>
+	</message>
+	<message name="find_tModel">
+		<part name="body" element="uddi:find_tModel"/>
+	</message>
+	<message name="get_bindingDetail">
+		<part name="body" element="uddi:get_bindingDetail"/>
+	</message>
+	<message name="get_businessDetail">
+		<part name="body" element="uddi:get_businessDetail"/>
+	</message>
+	<message name="get_businessDetailExt">
+		<part name="body" element="uddi:get_businessDetailExt"/>
+	</message>
+	<message name="get_serviceDetail">
+		<part name="body" element="uddi:get_serviceDetail"/>
+	</message>
+	<message name="get_tModelDetail">
+		<part name="body" element="uddi:get_tModelDetail"/>
+	</message>
+	<message name="relatedBusinessesList">
+		<part name="body" element="uddi:relatedBusinessesList"/>
+	</message>
+	<message name="serviceDetail">
+		<part name="body" element="uddi:serviceDetail"/>
+	</message>
+	<message name="serviceList">
+		<part name="body" element="uddi:serviceList"/>
+	</message>
+	<message name="tModelDetail">
+		<part name="body" element="uddi:tModelDetail"/>
+	</message>
+	<message name="tModelList">
+		<part name="body" element="uddi:tModelList"/>
+	</message>
+	<portType name="Inquire">
+		<documentation>
+			This portType defines all of the UDDI inquiry operations.
+	  </documentation>
+		<operation name="find_binding">
+			<input message="tns:find_binding"/>
+			<output message="tns:bindingDetail"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+		<operation name="find_business">
+			<input message="tns:find_business"/>
+			<output message="tns:businessList"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+		<operation name="find_relatedBusinesses">
+			<input message="tns:find_relatedBusinesses"/>
+			<output message="tns:relatedBusinessesList"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+		<operation name="find_service">
+			<input message="tns:find_service"/>
+			<output message="tns:serviceList"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+		<operation name="find_tModel">
+			<input message="tns:find_tModel"/>
+			<output message="tns:tModelList"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+		<operation name="get_bindingDetail">
+			<input message="tns:get_bindingDetail"/>
+			<output message="tns:bindingDetail"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+		<operation name="get_businessDetail">
+			<input message="tns:get_businessDetail"/>
+			<output message="tns:businessDetail"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+		<operation name="get_businessDetailExt">
+			<input message="tns:get_businessDetailExt"/>
+			<output message="tns:businessDetailExt"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+		<operation name="get_serviceDetail">
+			<input message="tns:get_serviceDetail"/>
+			<output message="tns:serviceDetail"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+		<operation name="get_tModelDetail">
+			<input message="tns:get_tModelDetail"/>
+			<output message="tns:tModelDetail"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+	</portType>
+	<binding name="InquireSoap" type="tns:Inquire">
+		<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
+		<documentation>
+		  This is the SOAP binding for the UDDI inquiry operations.
+		</documentation>
+		<operation name="find_binding">
+			<soap:operation soapAction="find_binding" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="find_business">
+			<soap:operation soapAction="find_business" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="find_relatedBusinesses">
+			<soap:operation soapAction="find_relatedBusinesses" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="find_service">
+			<soap:operation soapAction="find_service" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="find_tModel">
+			<soap:operation soapAction="find_tModel" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="get_bindingDetail">
+			<soap:operation soapAction="get_bindingDetail" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="get_businessDetail">
+			<soap:operation soapAction="get_businessDetail" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="get_businessDetailExt">
+			<soap:operation soapAction="get_businessDetailExt" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="get_serviceDetail">
+			<soap:operation soapAction="get_serviceDetail" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="get_tModelDetail">
+			<soap:operation soapAction="get_tModelDetail" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+	</binding>
+</definitions>

Added: juddi/trunk/uddi-ws/src/main/resources/publish_v2.wsdl
URL: http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/src/main/resources/publish_v2.wsdl?rev=1559910&view=auto
==============================================================================
--- juddi/trunk/uddi-ws/src/main/resources/publish_v2.wsdl (added)
+++ juddi/trunk/uddi-ws/src/main/resources/publish_v2.wsdl Tue Jan 21 02:57:32 2014
@@ -0,0 +1,378 @@
+<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="urn:uddi-org:publication_v2" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:uddi="urn:uddi-org:api_v2" targetNamespace="urn:uddi-org:publication_v2" name="UDDI_Publication_API_V2">
+	<documentation>
+		Copyright (c) 2000 - 2002 by Accenture, Ariba, Inc., Commerce One, Inc. 
+		Fujitsu Limited, Hewlett-Packard Company, i2 Technologies, Inc., 
+		Intel Corporation, International Business Machines Corporation,  
+		Microsoft Corporation, Oracle Corporation, SAP AG, Sun Microsystems, Inc., 
+		and VeriSign, Inc.  All Rights Reserved.
+		
+		WSDL Service Interface for UDDI Publication API V2.0
+		
+		This WSDL document defines the publication API calls for interacting with 
+		the UDDI registry.  The complete UDDI API specification is available
+		at http://www.uddi.org/specification.html.
+	</documentation> 
+	<types>
+		<xsd:schema targetNamespace="urn:uddi-org:publication_v2" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+			<xsd:import namespace="urn:uddi-org:api_v2" schemaLocation="uddi_v2.xsd"/>
+		</xsd:schema>
+	</types>
+	<message name="add_publisherAssertions">
+		<part name="body" element="uddi:add_publisherAssertions"/>
+	</message>
+	<message name="assertionStatusReport">
+		<part name="body" element="uddi:assertionStatusReport"/>
+	</message>
+	<message name="authToken">
+		<part name="body" element="uddi:authToken"/>
+	</message>
+	<message name="bindingDetail">
+		<part name="body" element="uddi:bindingDetail"/>
+	</message>
+	<message name="businessDetail">
+		<part name="body" element="uddi:businessDetail"/>
+	</message>
+	<message name="delete_binding">
+		<part name="body" element="uddi:delete_binding"/>
+	</message>
+	<message name="delete_business">
+		<part name="body" element="uddi:delete_business"/>
+	</message>
+	<message name="delete_publisherAssertions">
+		<part name="body" element="uddi:delete_publisherAssertions"/>
+	</message>
+	<message name="delete_service">
+		<part name="body" element="uddi:delete_service"/>
+	</message>
+	<message name="delete_tModel">
+		<part name="body" element="uddi:delete_tModel"/>
+	</message>
+	<message name="discard_authToken">
+		<part name="body" element="uddi:discard_authToken"/>
+	</message>
+	<message name="dispositionReport">
+		<part name="body" element="uddi:dispositionReport"/>
+	</message>
+	<message name="get_assertionStatusReport">
+		<part name="body" element="uddi:get_assertionStatusReport"/>
+	</message>
+	<message name="get_authToken">
+		<part name="body" element="uddi:get_authToken"/>
+	</message>
+	<message name="get_publisherAssertions">
+		<part name="body" element="uddi:get_publisherAssertions"/>
+	</message>
+	<message name="get_registeredInfo">
+		<part name="body" element="uddi:get_registeredInfo"/>
+	</message>
+	<message name="publisherAssertions">
+		<part name="body" element="uddi:publisherAssertions"/>
+	</message>
+	<message name="registeredInfo">
+		<part name="body" element="uddi:registeredInfo"/>
+	</message>
+	<message name="save_binding">
+		<part name="body" element="uddi:save_binding"/>
+	</message>
+	<message name="save_business">
+		<part name="body" element="uddi:save_business"/>
+	</message>
+	<message name="save_service">
+		<part name="body" element="uddi:save_service"/>
+	</message>
+	<message name="save_tModel">
+		<part name="body" element="uddi:save_tModel"/>
+	</message>
+	<message name="serviceDetail">
+		<part name="body" element="uddi:serviceDetail"/>
+	</message>
+	<message name="set_publisherAssertions">
+		<part name="body" element="uddi:set_publisherAssertions"/>
+	</message>
+	<message name="tModelDetail">
+		<part name="body" element="uddi:tModelDetail"/>
+	</message>
+	<portType name="Publish">
+		<documentation>
+			This portType defines all of the UDDI publish operations.
+	  </documentation>
+		<operation name="add_publisherAssertions">
+			<input message="tns:add_publisherAssertions"/>
+			<output message="tns:dispositionReport"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+		<operation name="delete_binding">
+			<input message="tns:delete_binding"/>
+			<output message="tns:dispositionReport"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+		<operation name="delete_business">
+			<input message="tns:delete_business"/>
+			<output message="tns:dispositionReport"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+		<operation name="delete_publisherAssertions">
+			<input message="tns:delete_publisherAssertions"/>
+			<output message="tns:dispositionReport"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+		<operation name="delete_service">
+			<input message="tns:delete_service"/>
+			<output message="tns:dispositionReport"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+		<operation name="delete_tModel">
+			<input message="tns:delete_tModel"/>
+			<output message="tns:dispositionReport"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+		<operation name="discard_authToken">
+			<input message="tns:discard_authToken"/>
+			<output message="tns:dispositionReport"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+		<operation name="get_assertionStatusReport">
+			<input message="tns:get_assertionStatusReport"/>
+			<output message="tns:assertionStatusReport"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+		<operation name="get_authToken">
+			<input message="tns:get_authToken"/>
+			<output message="tns:authToken"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+		<operation name="get_publisherAssertions">
+			<input message="tns:get_publisherAssertions"/>
+			<output message="tns:publisherAssertions"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+		<operation name="get_registeredInfo">
+			<input message="tns:get_registeredInfo"/>
+			<output message="tns:registeredInfo"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+		<operation name="save_binding">
+			<input message="tns:save_binding"/>
+			<output message="tns:bindingDetail"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+		<operation name="save_business">
+			<input message="tns:save_business"/>
+			<output message="tns:businessDetail"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+		<operation name="save_service">
+			<input message="tns:save_service"/>
+			<output message="tns:serviceDetail"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+		<operation name="save_tModel">
+			<input message="tns:save_tModel"/>
+			<output message="tns:tModelDetail"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+		<operation name="set_publisherAssertions">
+			<input message="tns:set_publisherAssertions"/>
+			<output message="tns:publisherAssertions"/>
+			<fault name="error" message="tns:dispositionReport"/>
+		</operation>
+	</portType>
+	<binding name="PublishSoap" type="tns:Publish">
+		<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
+		<documentation>
+		  This is the SOAP binding for the UDDI publish operations.
+		</documentation>
+		<operation name="add_publisherAssertions">
+			<soap:operation soapAction="add_publisherAssertions" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="delete_binding">
+			<soap:operation soapAction="delete_binding" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="delete_business">
+			<soap:operation soapAction="delete_business" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="delete_publisherAssertions">
+			<soap:operation soapAction="delete_publisherAssertions" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="delete_service">
+			<soap:operation soapAction="delete_service" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="delete_tModel">
+			<soap:operation soapAction="delete_tModel" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="discard_authToken">
+			<soap:operation soapAction="discard_authToken" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="get_assertionStatusReport">
+			<soap:operation soapAction="get_assertionStatusReport" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="get_authToken">
+			<soap:operation soapAction="get_authToken" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="get_publisherAssertions">
+			<soap:operation soapAction="get_publisherAssertions" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="get_registeredInfo">
+			<soap:operation soapAction="get_registeredInfo" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="save_binding">
+			<soap:operation soapAction="save_binding" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="save_business">
+			<soap:operation soapAction="save_business" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="save_service">
+			<soap:operation soapAction="save_service" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="save_tModel">
+			<soap:operation soapAction="save_tModel" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+		<operation name="set_publisherAssertions">
+			<soap:operation soapAction="set_publisherAssertions" style="document"/>
+			<input>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</input>
+			<output>
+				<soap:body parts="body" use="literal" namespace="urn:uddi-org:api_v2"/>
+			</output>
+			<fault name="error">
+				<soap:fault name="error" use="literal"/>
+			</fault>
+		</operation>
+	</binding>
+</definitions>



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