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

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

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDIService.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDIService.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDIService.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDIService.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,265 @@
+/*
+ * 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.net.MalformedURLException;
+import java.net.URL;
+import java.util.logging.Logger;
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import javax.xml.ws.WebEndpoint;
+import javax.xml.ws.WebServiceClient;
+import javax.xml.ws.WebServiceFeature;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.1.3-b02-
+ * Generated source version: 2.1
+ * 
+ */
+@WebServiceClient(name = "UDDI_Service", targetNamespace = \
"urn:uddi-org:v3_service", wsdlLocation = \
"file:/C:/Development/Projects/jUDDI_v3/uddi-ws/src/main/resources/uddi_v3_service.wsdl")
 +public class UDDIService
+    extends Service
+{
+
+    private final static URL UDDISERVICE_WSDL_LOCATION;
+    private final static Logger logger = \
Logger.getLogger(org.uddi.v3_service.UDDIService.class.getName()); +
+    static {
+        URL url = null;
+        try {
+            URL baseUrl;
+            baseUrl = org.uddi.v3_service.UDDIService.class.getResource(".");
+            url = new URL(baseUrl, \
"file:/C:/Development/Projects/jUDDI_v3/uddi-ws/src/main/resources/uddi_v3_service.wsdl");
 +        } catch (MalformedURLException e) {
+            logger.warning("Failed to create URL for the wsdl Location: \
'file:/C:/Development/Projects/jUDDI_v3/uddi-ws/src/main/resources/uddi_v3_service.wsdl', \
retrying as a local file"); +            logger.warning(e.getMessage());
+        }
+        UDDISERVICE_WSDL_LOCATION = url;
+    }
+
+    public UDDIService(URL wsdlLocation, QName serviceName) {
+        super(wsdlLocation, serviceName);
+    }
+
+    public UDDIService() {
+        super(UDDISERVICE_WSDL_LOCATION, new QName("urn:uddi-org:v3_service", \
"UDDI_Service")); +    }
+
+    /**
+     * 
+     * @return
+     *     returns UDDIInquiryPortType
+     */
+    @WebEndpoint(name = "UDDI_Inquiry_Port")
+    public UDDIInquiryPortType getUDDIInquiryPort() {
+        return super.getPort(new QName("urn:uddi-org:v3_service", \
"UDDI_Inquiry_Port"), UDDIInquiryPortType.class); +    }
+
+    /**
+     * 
+     * @param features
+     *     A list of {@link javax.xml.ws.WebServiceFeature} to configure on the \
proxy.  Supported features not in the <code>features</code> parameter will have their \
default values. +     * @return
+     *     returns UDDIInquiryPortType
+     */
+    @WebEndpoint(name = "UDDI_Inquiry_Port")
+    public UDDIInquiryPortType getUDDIInquiryPort(WebServiceFeature... features) {
+        return super.getPort(new QName("urn:uddi-org:v3_service", \
"UDDI_Inquiry_Port"), UDDIInquiryPortType.class, features); +    }
+
+    /**
+     * 
+     * @return
+     *     returns UDDIPublicationPortType
+     */
+    @WebEndpoint(name = "UDDI_Publication_Port")
+    public UDDIPublicationPortType getUDDIPublicationPort() {
+        return super.getPort(new QName("urn:uddi-org:v3_service", \
"UDDI_Publication_Port"), UDDIPublicationPortType.class); +    }
+
+    /**
+     * 
+     * @param features
+     *     A list of {@link javax.xml.ws.WebServiceFeature} to configure on the \
proxy.  Supported features not in the <code>features</code> parameter will have their \
default values. +     * @return
+     *     returns UDDIPublicationPortType
+     */
+    @WebEndpoint(name = "UDDI_Publication_Port")
+    public UDDIPublicationPortType getUDDIPublicationPort(WebServiceFeature... \
features) { +        return super.getPort(new QName("urn:uddi-org:v3_service", \
"UDDI_Publication_Port"), UDDIPublicationPortType.class, features); +    }
+
+    /**
+     * 
+     * @return
+     *     returns UDDISecurityPortType
+     */
+    @WebEndpoint(name = "UDDI_Security_Port")
+    public UDDISecurityPortType getUDDISecurityPort() {
+        return super.getPort(new QName("urn:uddi-org:v3_service", \
"UDDI_Security_Port"), UDDISecurityPortType.class); +    }
+
+    /**
+     * 
+     * @param features
+     *     A list of {@link javax.xml.ws.WebServiceFeature} to configure on the \
proxy.  Supported features not in the <code>features</code> parameter will have their \
default values. +     * @return
+     *     returns UDDISecurityPortType
+     */
+    @WebEndpoint(name = "UDDI_Security_Port")
+    public UDDISecurityPortType getUDDISecurityPort(WebServiceFeature... features) {
+        return super.getPort(new QName("urn:uddi-org:v3_service", \
"UDDI_Security_Port"), UDDISecurityPortType.class, features); +    }
+
+    /**
+     * 
+     * @return
+     *     returns UDDICustodyTransferPortType
+     */
+    @WebEndpoint(name = "UDDI_Custody_Port")
+    public UDDICustodyTransferPortType getUDDICustodyPort() {
+        return super.getPort(new QName("urn:uddi-org:v3_service", \
"UDDI_Custody_Port"), UDDICustodyTransferPortType.class); +    }
+
+    /**
+     * 
+     * @param features
+     *     A list of {@link javax.xml.ws.WebServiceFeature} to configure on the \
proxy.  Supported features not in the <code>features</code> parameter will have their \
default values. +     * @return
+     *     returns UDDICustodyTransferPortType
+     */
+    @WebEndpoint(name = "UDDI_Custody_Port")
+    public UDDICustodyTransferPortType getUDDICustodyPort(WebServiceFeature... \
features) { +        return super.getPort(new QName("urn:uddi-org:v3_service", \
"UDDI_Custody_Port"), UDDICustodyTransferPortType.class, features); +    }
+
+    /**
+     * 
+     * @return
+     *     returns UDDIReplicationPortType
+     */
+    @WebEndpoint(name = "UDDI_Replication_Port")
+    public UDDIReplicationPortType getUDDIReplicationPort() {
+        return super.getPort(new QName("urn:uddi-org:v3_service", \
"UDDI_Replication_Port"), UDDIReplicationPortType.class); +    }
+
+    /**
+     * 
+     * @param features
+     *     A list of {@link javax.xml.ws.WebServiceFeature} to configure on the \
proxy.  Supported features not in the <code>features</code> parameter will have their \
default values. +     * @return
+     *     returns UDDIReplicationPortType
+     */
+    @WebEndpoint(name = "UDDI_Replication_Port")
+    public UDDIReplicationPortType getUDDIReplicationPort(WebServiceFeature... \
features) { +        return super.getPort(new QName("urn:uddi-org:v3_service", \
"UDDI_Replication_Port"), UDDIReplicationPortType.class, features); +    }
+
+    /**
+     * 
+     * @return
+     *     returns UDDISubscriptionPortType
+     */
+    @WebEndpoint(name = "UDDI_Subscription_Port")
+    public UDDISubscriptionPortType getUDDISubscriptionPort() {
+        return super.getPort(new QName("urn:uddi-org:v3_service", \
"UDDI_Subscription_Port"), UDDISubscriptionPortType.class); +    }
+
+    /**
+     * 
+     * @param features
+     *     A list of {@link javax.xml.ws.WebServiceFeature} to configure on the \
proxy.  Supported features not in the <code>features</code> parameter will have their \
default values. +     * @return
+     *     returns UDDISubscriptionPortType
+     */
+    @WebEndpoint(name = "UDDI_Subscription_Port")
+    public UDDISubscriptionPortType getUDDISubscriptionPort(WebServiceFeature... \
features) { +        return super.getPort(new QName("urn:uddi-org:v3_service", \
"UDDI_Subscription_Port"), UDDISubscriptionPortType.class, features); +    }
+
+    /**
+     * 
+     * @return
+     *     returns UDDISubscriptionListenerPortType
+     */
+    @WebEndpoint(name = "UDDI_SubscriptionListener_Port")
+    public UDDISubscriptionListenerPortType getUDDISubscriptionListenerPort() {
+        return super.getPort(new QName("urn:uddi-org:v3_service", \
"UDDI_SubscriptionListener_Port"), UDDISubscriptionListenerPortType.class); +    }
+
+    /**
+     * 
+     * @param features
+     *     A list of {@link javax.xml.ws.WebServiceFeature} to configure on the \
proxy.  Supported features not in the <code>features</code> parameter will have their \
default values. +     * @return
+     *     returns UDDISubscriptionListenerPortType
+     */
+    @WebEndpoint(name = "UDDI_SubscriptionListener_Port")
+    public UDDISubscriptionListenerPortType \
getUDDISubscriptionListenerPort(WebServiceFeature... features) { +        return \
super.getPort(new QName("urn:uddi-org:v3_service", "UDDI_SubscriptionListener_Port"), \
UDDISubscriptionListenerPortType.class, features); +    }
+
+    /**
+     * 
+     * @return
+     *     returns UDDIValueSetValidationPortType
+     */
+    @WebEndpoint(name = "UDDI_ValueSetValidation_Port")
+    public UDDIValueSetValidationPortType getUDDIValueSetValidationPort() {
+        return super.getPort(new QName("urn:uddi-org:v3_service", \
"UDDI_ValueSetValidation_Port"), UDDIValueSetValidationPortType.class); +    }
+
+    /**
+     * 
+     * @param features
+     *     A list of {@link javax.xml.ws.WebServiceFeature} to configure on the \
proxy.  Supported features not in the <code>features</code> parameter will have their \
default values. +     * @return
+     *     returns UDDIValueSetValidationPortType
+     */
+    @WebEndpoint(name = "UDDI_ValueSetValidation_Port")
+    public UDDIValueSetValidationPortType \
getUDDIValueSetValidationPort(WebServiceFeature... features) { +        return \
super.getPort(new QName("urn:uddi-org:v3_service", "UDDI_ValueSetValidation_Port"), \
UDDIValueSetValidationPortType.class, features); +    }
+
+    /**
+     * 
+     * @return
+     *     returns UDDIValueSetCachingPortType
+     */
+    @WebEndpoint(name = "UDDI_ValueSetCaching_Port")
+    public UDDIValueSetCachingPortType getUDDIValueSetCachingPort() {
+        return super.getPort(new QName("urn:uddi-org:v3_service", \
"UDDI_ValueSetCaching_Port"), UDDIValueSetCachingPortType.class); +    }
+
+    /**
+     * 
+     * @param features
+     *     A list of {@link javax.xml.ws.WebServiceFeature} to configure on the \
proxy.  Supported features not in the <code>features</code> parameter will have their \
default values. +     * @return
+     *     returns UDDIValueSetCachingPortType
+     */
+    @WebEndpoint(name = "UDDI_ValueSetCaching_Port")
+    public UDDIValueSetCachingPortType \
getUDDIValueSetCachingPort(WebServiceFeature... features) { +        return \
super.getPort(new QName("urn:uddi-org:v3_service", "UDDI_ValueSetCaching_Port"), \
UDDIValueSetCachingPortType.class, features); +    }
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDISubscriptionListenerPortType.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main \
/java/org/uddi/v3_service/UDDISubscriptionListenerPortType.java?rev=681228&view=auto \
                ==============================================================================
                
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDISubscriptionListenerPortType.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDISubscriptionListenerPortType.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,72 @@
+/*
+ * 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.DispositionReport;
+import org.uddi.subr_v3.NotifySubscriptionListener;
+
+
+/**
+ * This portType defines all of the UDDI subscriptionListener 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_SubscriptionListener_PortType", targetNamespace = \
"urn:uddi-org:subr_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 UDDISubscriptionListenerPortType {
+
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v3.DispositionReport
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "notify_subscriptionListener", action = \
"notify_subscriptionListener") +    @WebResult(name = "dispositionReport", \
targetNamespace = "urn:uddi-org:api_v3", partName = "body") +    \
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) +    public \
DispositionReport notifySubscriptionListener( +        @WebParam(name = \
"notify_subscriptionListener", targetNamespace = "urn:uddi-org:subr_v3", partName = \
"body") +        NotifySubscriptionListener body)
+        throws DispositionReportFaultMessage
+    ;
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDISubscriptionPortType.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDISubscriptionPortType.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDISubscriptionPortType.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDISubscriptionPortType.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,125 @@
+/*
+ * 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.sub_v3.DeleteSubscription;
+import org.uddi.sub_v3.GetSubscriptionResults;
+import org.uddi.sub_v3.Subscription;
+import org.uddi.sub_v3.SubscriptionResultsList;
+
+
+/**
+ * This portType defines all of the UDDI subscription 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_Subscription_PortType", targetNamespace = \
"urn:uddi-org:sub_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 UDDISubscriptionPortType {
+
+
+    /**
+     * 
+     * @param body
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "delete_subscription", action = \
"delete_subscription") +    @SOAPBinding(parameterStyle = \
SOAPBinding.ParameterStyle.BARE) +    public void deleteSubscription(
+        @WebParam(name = "delete_subscription", targetNamespace = \
"urn:uddi-org:sub_v3", partName = "body") +        DeleteSubscription body)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.sub_v3.SubscriptionResultsList
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "get_subscriptionResults", action = \
"get_subscriptionResults") +    @WebResult(name = "subscriptionResultsList", \
targetNamespace = "urn:uddi-org:sub_v3", partName = "body") +    \
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) +    public \
SubscriptionResultsList getSubscriptionResults( +        @WebParam(name = \
"get_subscriptionResults", targetNamespace = "urn:uddi-org:sub_v3", partName = \
"body") +        GetSubscriptionResults body)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param authInfo
+     * @return
+     *     returns java.util.List<org.uddi.sub_v3.Subscription>
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "get_subscriptions", action = "get_subscriptions")
+    @WebResult(name = "subscription", targetNamespace = "urn:uddi-org:sub_v3")
+    @RequestWrapper(localName = "get_subscriptions", targetNamespace = \
"urn:uddi-org:sub_v3", className = "org.uddi.sub_v3.GetSubscriptions") +    \
@ResponseWrapper(localName = "subscriptions", targetNamespace = \
"urn:uddi-org:sub_v3", className = "org.uddi.sub_v3.Subscriptions") +    public \
List<Subscription> getSubscriptions( +        @WebParam(name = "authInfo", \
targetNamespace = "urn:uddi-org:api_v3") +        String authInfo)
+        throws DispositionReportFaultMessage
+    ;
+
+    /**
+     * 
+     * @param subscription
+     * @param authInfo
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "save_subscription", action = "save_subscription")
+    @RequestWrapper(localName = "save_subscription", targetNamespace = \
"urn:uddi-org:sub_v3", className = "org.uddi.sub_v3.SaveSubscription") +    \
@ResponseWrapper(localName = "subscriptions", targetNamespace = \
"urn:uddi-org:sub_v3", className = "org.uddi.sub_v3.Subscriptions") +    public void \
saveSubscription( +        @WebParam(name = "authInfo", targetNamespace = \
"urn:uddi-org:api_v3") +        String authInfo,
+        @WebParam(name = "subscription", targetNamespace = "urn:uddi-org:sub_v3", \
mode = WebParam.Mode.INOUT) +        Holder<List<Subscription>> subscription)
+        throws DispositionReportFaultMessage
+    ;
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDIValueSetCachingPortType.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDIValueSetCachingPortType.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDIValueSetCachingPortType.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDIValueSetCachingPortType.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,80 @@
+/*
+ * 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.WebService;
+import javax.xml.bind.annotation.XmlSeeAlso;
+import javax.xml.ws.Holder;
+import javax.xml.ws.RequestWrapper;
+import javax.xml.ws.ResponseWrapper;
+import org.uddi.vscache_v3.ValidValue;
+
+
+/**
+ * This portType defines all of the UDDI value set caching 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_ValueSetCaching_PortType", targetNamespace = \
"urn:uddi-org:vscache_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 UDDIValueSetCachingPortType {
+
+
+    /**
+     * 
+     * @param tModelKey
+     * @param authInfo
+     * @param validValue
+     * @param chunkToken
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "get_allValidValues", action = "get_allValidValues")
+    @RequestWrapper(localName = "get_allValidValues", targetNamespace = \
"urn:uddi-org:vscache_v3", className = "org.uddi.vscache_v3.GetAllValidValues") +    \
@ResponseWrapper(localName = "validValuesList", targetNamespace = \
"urn:uddi-org:vscache_v3", className = "org.uddi.vscache_v3.ValidValuesList") +    \
public void getAllValidValues( +        @WebParam(name = "authInfo", targetNamespace \
= "urn:uddi-org:api_v3") +        String authInfo,
+        @WebParam(name = "tModelKey", targetNamespace = "urn:uddi-org:api_v3")
+        String tModelKey,
+        @WebParam(name = "chunkToken", targetNamespace = "urn:uddi-org:vscache_v3", \
mode = WebParam.Mode.INOUT) +        Holder<String> chunkToken,
+        @WebParam(name = "validValue", targetNamespace = "urn:uddi-org:vscache_v3", \
mode = WebParam.Mode.OUT) +        Holder<List<ValidValue>> validValue)
+        throws DispositionReportFaultMessage
+    ;
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDIValueSetValidationPortType.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main \
/java/org/uddi/v3_service/UDDIValueSetValidationPortType.java?rev=681228&view=auto \
                ==============================================================================
                
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDIValueSetValidationPortType.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/UDDIValueSetValidationPortType.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,72 @@
+/*
+ * 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.DispositionReport;
+import org.uddi.vs_v3.ValidateValues;
+
+
+/**
+ * This portType defines all of the UDDI value set validation 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_ValueSetValidation_PortType", targetNamespace = \
"urn:uddi-org:vs_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 UDDIValueSetValidationPortType {
+
+
+    /**
+     * 
+     * @param body
+     * @return
+     *     returns org.uddi.api_v3.DispositionReport
+     * @throws DispositionReportFaultMessage
+     */
+    @WebMethod(operationName = "validate_values", action = "validate_values")
+    @WebResult(name = "dispositionReport", targetNamespace = "urn:uddi-org:api_v3", \
partName = "body") +    @SOAPBinding(parameterStyle = \
SOAPBinding.ParameterStyle.BARE) +    public DispositionReport validateValues(
+        @WebParam(name = "validate_values", targetNamespace = "urn:uddi-org:vs_v3", \
partName = "body") +        ValidateValues body)
+        throws DispositionReportFaultMessage
+    ;
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/package-info.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/package-info.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/package-info.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/v3_service/package-info.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,23 @@
+/*
+ * 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.
+ *
+ */
+
+/**
+ * WSDL service definition for UDDI 3.0.2 specification
+ * 
+ */
+package org.uddi.v3_service;
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vs_v3/ObjectFactory.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vs_v3/ObjectFactory.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vs_v3/ObjectFactory.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vs_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.vs_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.vs_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 _ValidateValues_QNAME = new \
QName("urn:uddi-org:vs_v3", "validate_values"); +
+    /**
+     * Create a new ObjectFactory that can be used to create new instances of schema \
derived classes for package: org.uddi.vs_v3 +     * 
+     */
+    public ObjectFactory() {
+    }
+
+    /**
+     * Create an instance of {@link ValidateValues }
+     * 
+     */
+    public ValidateValues createValidateValues() {
+        return new ValidateValues();
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ValidateValues \
}{@code >}} +     * 
+     */
+    @XmlElementDecl(namespace = "urn:uddi-org:vs_v3", name = "validate_values")
+    public JAXBElement<ValidateValues> createValidateValues(ValidateValues value) {
+        return new JAXBElement<ValidateValues>(_ValidateValues_QNAME, \
ValidateValues.class, null, value); +    }
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vs_v3/ValidateValues.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vs_v3/ValidateValues.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vs_v3/ValidateValues.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vs_v3/ValidateValues.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,254 @@
+/*
+ * 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.vs_v3;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+import org.uddi.api_v3.BindingTemplate;
+import org.uddi.api_v3.BusinessEntity;
+import org.uddi.api_v3.BusinessService;
+import org.uddi.api_v3.PublisherAssertion;
+import org.uddi.api_v3.TModel;
+
+
+/**
+ * <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;sequence>
+ *         &lt;element ref="{urn:uddi-org:api_v3}authInfo" minOccurs="0"/>
+ *         &lt;choice>
+ *           &lt;element ref="{urn:uddi-org:api_v3}businessEntity" \
maxOccurs="unbounded"/> + *           &lt;element \
ref="{urn:uddi-org:api_v3}businessService" maxOccurs="unbounded"/> + *           \
&lt;element ref="{urn:uddi-org:api_v3}bindingTemplate" maxOccurs="unbounded"/> + *    \
&lt;element ref="{urn:uddi-org:api_v3}tModel" maxOccurs="unbounded"/> + *           \
&lt;element ref="{urn:uddi-org:api_v3}publisherAssertion" maxOccurs="unbounded"/> + * \
&lt;/choice> + *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "validate_values", propOrder = {
+    "authInfo",
+    "businessEntity",
+    "businessService",
+    "bindingTemplate",
+    "tModel",
+    "publisherAssertion"
+})
+public class ValidateValues {
+
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected String authInfo;
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected List<BusinessEntity> businessEntity;
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected List<BusinessService> businessService;
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected List<BindingTemplate> bindingTemplate;
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected List<TModel> tModel;
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected List<PublisherAssertion> publisherAssertion;
+
+    /**
+     * 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 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 bindingTemplate 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 bindingTemplate \
property. +     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getBindingTemplate().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link BindingTemplate }
+     * 
+     * 
+     */
+    public List<BindingTemplate> getBindingTemplate() {
+        if (bindingTemplate == null) {
+            bindingTemplate = new ArrayList<BindingTemplate>();
+        }
+        return this.bindingTemplate;
+    }
+
+    /**
+     * 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 publisherAssertion 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 publisherAssertion \
property. +     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getPublisherAssertion().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link PublisherAssertion }
+     * 
+     * 
+     */
+    public List<PublisherAssertion> getPublisherAssertion() {
+        if (publisherAssertion == null) {
+            publisherAssertion = new ArrayList<PublisherAssertion>();
+        }
+        return this.publisherAssertion;
+    }
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vs_v3/package-info.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vs_v3/package-info.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vs_v3/package-info.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vs_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:vs_v3", \
elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package \
org.uddi.vs_v3; +
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vscache_v3/GetAllValidValues.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vscache_v3/GetAllValidValues.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vscache_v3/GetAllValidValues.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vscache_v3/GetAllValidValues.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,135 @@
+/*
+ * 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.vscache_v3;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for get_allValidValues complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within \
this class. + * 
+ * <pre>
+ * &lt;complexType name="get_allValidValues">
+ *   &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:api_v3}tModelKey"/>
+ *         &lt;element ref="{urn:uddi-org:vscache_v3}chunkToken" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "get_allValidValues", propOrder = {
+    "authInfo",
+    "tModelKey",
+    "chunkToken"
+})
+public class GetAllValidValues {
+
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected String authInfo;
+    @XmlElement(namespace = "urn:uddi-org:api_v3", required = true)
+    protected String tModelKey;
+    protected String chunkToken;
+
+    /**
+     * 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 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;
+    }
+
+    /**
+     * 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;
+    }
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vscache_v3/ObjectFactory.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vscache_v3/ObjectFactory.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vscache_v3/ObjectFactory.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vscache_v3/ObjectFactory.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,127 @@
+/*
+ * 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.vscache_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.vscache_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 _GetAllValidValues_QNAME = new \
QName("urn:uddi-org:vscache_v3", "get_allValidValues"); +    private final static \
QName _KeyValue_QNAME = new QName("urn:uddi-org:vscache_v3", "keyValue"); +    \
private final static QName _ValidValue_QNAME = new QName("urn:uddi-org:vscache_v3", \
"validValue"); +    private final static QName _ValidValuesList_QNAME = new \
QName("urn:uddi-org:vscache_v3", "validValuesList"); +    private final static QName \
_ChunkToken_QNAME = new QName("urn:uddi-org:vscache_v3", "chunkToken"); +
+    /**
+     * Create a new ObjectFactory that can be used to create new instances of schema \
derived classes for package: org.uddi.vscache_v3 +     * 
+     */
+    public ObjectFactory() {
+    }
+
+    /**
+     * Create an instance of {@link ValidValuesList }
+     * 
+     */
+    public ValidValuesList createValidValuesList() {
+        return new ValidValuesList();
+    }
+
+    /**
+     * Create an instance of {@link ValidValue }
+     * 
+     */
+    public ValidValue createValidValue() {
+        return new ValidValue();
+    }
+
+    /**
+     * Create an instance of {@link GetAllValidValues }
+     * 
+     */
+    public GetAllValidValues createGetAllValidValues() {
+        return new GetAllValidValues();
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link GetAllValidValues \
}{@code >}} +     * 
+     */
+    @XmlElementDecl(namespace = "urn:uddi-org:vscache_v3", name = \
"get_allValidValues") +    public JAXBElement<GetAllValidValues> \
createGetAllValidValues(GetAllValidValues value) { +        return new \
JAXBElement<GetAllValidValues>(_GetAllValidValues_QNAME, GetAllValidValues.class, \
null, value); +    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "urn:uddi-org:vscache_v3", name = "keyValue")
+    public JAXBElement<String> createKeyValue(String value) {
+        return new JAXBElement<String>(_KeyValue_QNAME, String.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ValidValue }{@code \
>}} +     * 
+     */
+    @XmlElementDecl(namespace = "urn:uddi-org:vscache_v3", name = "validValue")
+    public JAXBElement<ValidValue> createValidValue(ValidValue value) {
+        return new JAXBElement<ValidValue>(_ValidValue_QNAME, ValidValue.class, \
null, value); +    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link ValidValuesList \
}{@code >}} +     * 
+     */
+    @XmlElementDecl(namespace = "urn:uddi-org:vscache_v3", name = "validValuesList")
+    public JAXBElement<ValidValuesList> createValidValuesList(ValidValuesList value) \
{ +        return new JAXBElement<ValidValuesList>(_ValidValuesList_QNAME, \
ValidValuesList.class, null, value); +    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "urn:uddi-org:vscache_v3", name = "chunkToken")
+    public JAXBElement<String> createChunkToken(String value) {
+        return new JAXBElement<String>(_ChunkToken_QNAME, String.class, null, \
value); +    }
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vscache_v3/ValidValue.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vscache_v3/ValidValue.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vscache_v3/ValidValue.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vscache_v3/ValidValue.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,80 @@
+/*
+ * 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.vscache_v3;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for validValue complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within \
this class. + * 
+ * <pre>
+ * &lt;complexType name="validValue">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element ref="{urn:uddi-org:vscache_v3}keyValue"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "validValue", propOrder = {
+    "keyValue"
+})
+public class ValidValue {
+
+    @XmlElement(required = true)
+    protected String keyValue;
+
+    /**
+     * Gets the value of the keyValue property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getKeyValue() {
+        return keyValue;
+    }
+
+    /**
+     * Sets the value of the keyValue property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setKeyValue(String value) {
+        this.keyValue = value;
+    }
+
+}
+
\ No newline at end of file

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

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vscache_v3/package-info.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vscache_v3/package-info.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vscache_v3/package-info.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/vscache_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:vscache_v3", \
elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package \
org.uddi.vscache_v3; +
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/w3/_2000/_09/xmldsig_/CanonicalizationMethodType.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main \
/java/org/w3/_2000/_09/xmldsig_/CanonicalizationMethodType.java?rev=681228&view=auto \
                ==============================================================================
                
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/w3/_2000/_09/xmldsig_/CanonicalizationMethodType.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/w3/_2000/_09/xmldsig_/CanonicalizationMethodType.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,120 @@
+/*
+ * 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.w3._2000._09.xmldsig_;
+
+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.XmlAnyElement;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlMixed;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for CanonicalizationMethodType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within \
this class. + * 
+ * <pre>
+ * &lt;complexType name="CanonicalizationMethodType">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;any/>
+ *       &lt;/sequence>
+ *       &lt;attribute name="Algorithm" use="required" \
type="{http://www.w3.org/2001/XMLSchema}anyURI" /> + *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "CanonicalizationMethodType", propOrder = {
+    "content"
+})
+public class CanonicalizationMethodType {
+
+    @XmlMixed
+    @XmlAnyElement(lax = true)
+    protected List<Object> content;
+    @XmlAttribute(name = "Algorithm", required = true)
+    @XmlSchemaType(name = "anyURI")
+    protected String algorithm;
+
+    /**
+     * Gets the value of the content 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 content property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getContent().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link String }
+     * {@link Object }
+     * 
+     * 
+     */
+    public List<Object> getContent() {
+        if (content == null) {
+            content = new ArrayList<Object>();
+        }
+        return this.content;
+    }
+
+    /**
+     * Gets the value of the algorithm property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getAlgorithm() {
+        return algorithm;
+    }
+
+    /**
+     * Sets the value of the algorithm property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setAlgorithm(String value) {
+        this.algorithm = value;
+    }
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/w3/_2000/_09/xmldsig_/DSAKeyValueType.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/w3/_2000/_09/xmldsig_/DSAKeyValueType.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/w3/_2000/_09/xmldsig_/DSAKeyValueType.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/w3/_2000/_09/xmldsig_/DSAKeyValueType.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,238 @@
+/*
+ * 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.w3._2000._09.xmldsig_;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for DSAKeyValueType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within \
this class. + * 
+ * <pre>
+ * &lt;complexType name="DSAKeyValueType">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;sequence minOccurs="0">
+ *           &lt;element name="P" \
type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/> + *           &lt;element \
name="Q" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/> + *         \
&lt;/sequence> + *         &lt;element name="G" \
type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary" minOccurs="0"/> + *         \
&lt;element name="Y" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/> + *    \
&lt;element name="J" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary" \
minOccurs="0"/> + *         &lt;sequence minOccurs="0">
+ *           &lt;element name="Seed" \
type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/> + *           &lt;element \
name="PgenCounter" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/> + *      \
&lt;/sequence> + *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DSAKeyValueType", propOrder = {
+    "p",
+    "q",
+    "g",
+    "y",
+    "j",
+    "seed",
+    "pgenCounter"
+})
+public class DSAKeyValueType {
+
+    @XmlElement(name = "P")
+    protected byte[] p;
+    @XmlElement(name = "Q")
+    protected byte[] q;
+    @XmlElement(name = "G")
+    protected byte[] g;
+    @XmlElement(name = "Y", required = true)
+    protected byte[] y;
+    @XmlElement(name = "J")
+    protected byte[] j;
+    @XmlElement(name = "Seed")
+    protected byte[] seed;
+    @XmlElement(name = "PgenCounter")
+    protected byte[] pgenCounter;
+
+    /**
+     * Gets the value of the p property.
+     * 
+     * @return
+     *     possible object is
+     *     byte[]
+     */
+    public byte[] getP() {
+        return p;
+    }
+
+    /**
+     * Sets the value of the p property.
+     * 
+     * @param value
+     *     allowed object is
+     *     byte[]
+     */
+    public void setP(byte[] value) {
+        this.p = ((byte[]) value);
+    }
+
+    /**
+     * Gets the value of the q property.
+     * 
+     * @return
+     *     possible object is
+     *     byte[]
+     */
+    public byte[] getQ() {
+        return q;
+    }
+
+    /**
+     * Sets the value of the q property.
+     * 
+     * @param value
+     *     allowed object is
+     *     byte[]
+     */
+    public void setQ(byte[] value) {
+        this.q = ((byte[]) value);
+    }
+
+    /**
+     * Gets the value of the g property.
+     * 
+     * @return
+     *     possible object is
+     *     byte[]
+     */
+    public byte[] getG() {
+        return g;
+    }
+
+    /**
+     * Sets the value of the g property.
+     * 
+     * @param value
+     *     allowed object is
+     *     byte[]
+     */
+    public void setG(byte[] value) {
+        this.g = ((byte[]) value);
+    }
+
+    /**
+     * Gets the value of the y property.
+     * 
+     * @return
+     *     possible object is
+     *     byte[]
+     */
+    public byte[] getY() {
+        return y;
+    }
+
+    /**
+     * Sets the value of the y property.
+     * 
+     * @param value
+     *     allowed object is
+     *     byte[]
+     */
+    public void setY(byte[] value) {
+        this.y = ((byte[]) value);
+    }
+
+    /**
+     * Gets the value of the j property.
+     * 
+     * @return
+     *     possible object is
+     *     byte[]
+     */
+    public byte[] getJ() {
+        return j;
+    }
+
+    /**
+     * Sets the value of the j property.
+     * 
+     * @param value
+     *     allowed object is
+     *     byte[]
+     */
+    public void setJ(byte[] value) {
+        this.j = ((byte[]) value);
+    }
+
+    /**
+     * Gets the value of the seed property.
+     * 
+     * @return
+     *     possible object is
+     *     byte[]
+     */
+    public byte[] getSeed() {
+        return seed;
+    }
+
+    /**
+     * Sets the value of the seed property.
+     * 
+     * @param value
+     *     allowed object is
+     *     byte[]
+     */
+    public void setSeed(byte[] value) {
+        this.seed = ((byte[]) value);
+    }
+
+    /**
+     * Gets the value of the pgenCounter property.
+     * 
+     * @return
+     *     possible object is
+     *     byte[]
+     */
+    public byte[] getPgenCounter() {
+        return pgenCounter;
+    }
+
+    /**
+     * Sets the value of the pgenCounter property.
+     * 
+     * @param value
+     *     allowed object is
+     *     byte[]
+     */
+    public void setPgenCounter(byte[] value) {
+        this.pgenCounter = ((byte[]) value);
+    }
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/w3/_2000/_09/xmldsig_/DigestMethodType.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/w3/_2000/_09/xmldsig_/DigestMethodType.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/w3/_2000/_09/xmldsig_/DigestMethodType.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/w3/_2000/_09/xmldsig_/DigestMethodType.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,122 @@
+/*
+ * 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.w3._2000._09.xmldsig_;
+
+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.XmlAnyElement;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlMixed;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+import org.w3c.dom.Element;
+
+
+/**
+ * <p>Java class for DigestMethodType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within \
this class. + * 
+ * <pre>
+ * &lt;complexType name="DigestMethodType">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;any/>
+ *       &lt;/sequence>
+ *       &lt;attribute name="Algorithm" use="required" \
type="{http://www.w3.org/2001/XMLSchema}anyURI" /> + *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DigestMethodType", propOrder = {
+    "content"
+})
+public class DigestMethodType {
+
+    @XmlMixed
+    @XmlAnyElement(lax = true)
+    protected List<Object> content;
+    @XmlAttribute(name = "Algorithm", required = true)
+    @XmlSchemaType(name = "anyURI")
+    protected String algorithm;
+
+    /**
+     * Gets the value of the content 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 content property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getContent().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link String }
+     * {@link Element }
+     * {@link Object }
+     * 
+     * 
+     */
+    public List<Object> getContent() {
+        if (content == null) {
+            content = new ArrayList<Object>();
+        }
+        return this.content;
+    }
+
+    /**
+     * Gets the value of the algorithm property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getAlgorithm() {
+        return algorithm;
+    }
+
+    /**
+     * Sets the value of the algorithm property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setAlgorithm(String value) {
+        this.algorithm = value;
+    }
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/w3/_2000/_09/xmldsig_/KeyInfoType.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/w3/_2000/_09/xmldsig_/KeyInfoType.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/w3/_2000/_09/xmldsig_/KeyInfoType.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/w3/_2000/_09/xmldsig_/KeyInfoType.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,153 @@
+/*
+ * 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.w3._2000._09.xmldsig_;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.JAXBElement;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAnyElement;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElementRef;
+import javax.xml.bind.annotation.XmlElementRefs;
+import javax.xml.bind.annotation.XmlID;
+import javax.xml.bind.annotation.XmlMixed;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
+import org.w3c.dom.Element;
+
+
+/**
+ * <p>Java class for KeyInfoType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within \
this class. + * 
+ * <pre>
+ * &lt;complexType name="KeyInfoType">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;choice maxOccurs="unbounded">
+ *         &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}KeyName"/>
+ *         &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}KeyValue"/>
+ *         &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}RetrievalMethod"/>
+ *         &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}X509Data"/>
+ *         &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}PGPData"/>
+ *         &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}SPKIData"/>
+ *         &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}MgmtData"/>
+ *         &lt;any/>
+ *       &lt;/choice>
+ *       &lt;attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "KeyInfoType", propOrder = {
+    "content"
+})
+public class KeyInfoType {
+
+    @XmlElementRefs({
+        @XmlElementRef(name = "RetrievalMethod", namespace = \
"http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class), +        \
@XmlElementRef(name = "MgmtData", namespace = "http://www.w3.org/2000/09/xmldsig#", \
type = JAXBElement.class), +        @XmlElementRef(name = "X509Data", namespace = \
"http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class), +        \
@XmlElementRef(name = "SPKIData", namespace = "http://www.w3.org/2000/09/xmldsig#", \
type = JAXBElement.class), +        @XmlElementRef(name = "KeyName", namespace = \
"http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class), +        \
@XmlElementRef(name = "PGPData", namespace = "http://www.w3.org/2000/09/xmldsig#", \
type = JAXBElement.class), +        @XmlElementRef(name = "KeyValue", namespace = \
"http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class) +    })
+    @XmlMixed
+    @XmlAnyElement(lax = true)
+    protected List<Object> content;
+    @XmlAttribute(name = "Id")
+    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+    @XmlID
+    @XmlSchemaType(name = "ID")
+    protected String id;
+
+    /**
+     * Gets the value of the content 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 content property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getContent().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link String }
+     * {@link JAXBElement }{@code <}{@link RetrievalMethodType }{@code >}
+     * {@link JAXBElement }{@code <}{@link String }{@code >}
+     * {@link JAXBElement }{@code <}{@link X509DataType }{@code >}
+     * {@link Element }
+     * {@link JAXBElement }{@code <}{@link SPKIDataType }{@code >}
+     * {@link JAXBElement }{@code <}{@link String }{@code >}
+     * {@link Object }
+     * {@link JAXBElement }{@code <}{@link PGPDataType }{@code >}
+     * {@link JAXBElement }{@code <}{@link KeyValueType }{@code >}
+     * 
+     * 
+     */
+    public List<Object> getContent() {
+        if (content == null) {
+            content = new ArrayList<Object>();
+        }
+        return this.content;
+    }
+
+    /**
+     * Gets the value of the id property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getId() {
+        return id;
+    }
+
+    /**
+     * Sets the value of the id property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setId(String value) {
+        this.id = value;
+    }
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/w3/_2000/_09/xmldsig_/KeyValueType.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/w3/_2000/_09/xmldsig_/KeyValueType.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/w3/_2000/_09/xmldsig_/KeyValueType.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/w3/_2000/_09/xmldsig_/KeyValueType.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,103 @@
+/*
+ * 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.w3._2000._09.xmldsig_;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.JAXBElement;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAnyElement;
+import javax.xml.bind.annotation.XmlElementRef;
+import javax.xml.bind.annotation.XmlElementRefs;
+import javax.xml.bind.annotation.XmlMixed;
+import javax.xml.bind.annotation.XmlType;
+import org.w3c.dom.Element;
+
+
+/**
+ * <p>Java class for KeyValueType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within \
this class. + * 
+ * <pre>
+ * &lt;complexType name="KeyValueType">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;choice>
+ *         &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}DSAKeyValue"/>
+ *         &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}RSAKeyValue"/>
+ *         &lt;any/>
+ *       &lt;/choice>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "KeyValueType", propOrder = {
+    "content"
+})
+public class KeyValueType {
+
+    @XmlElementRefs({
+        @XmlElementRef(name = "RSAKeyValue", namespace = \
"http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class), +        \
@XmlElementRef(name = "DSAKeyValue", namespace = \
"http://www.w3.org/2000/09/xmldsig#", type = JAXBElement.class) +    })
+    @XmlMixed
+    @XmlAnyElement(lax = true)
+    protected List<Object> content;
+
+    /**
+     * Gets the value of the content 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 content property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getContent().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link String }
+     * {@link JAXBElement }{@code <}{@link DSAKeyValueType }{@code >}
+     * {@link JAXBElement }{@code <}{@link RSAKeyValueType }{@code >}
+     * {@link Object }
+     * {@link Element }
+     * 
+     * 
+     */
+    public List<Object> getContent() {
+        if (content == null) {
+            content = new ArrayList<Object>();
+        }
+        return this.content;
+    }
+
+}
+
\ No newline at end of file

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/w3/_2000/_09/xmldsig_/ManifestType.java
                
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/w3/_2000/_09/xmldsig_/ManifestType.java?rev=681228&view=auto
 ==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/w3/_2000/_09/xmldsig_/ManifestType.java \
                (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/w3/_2000/_09/xmldsig_/ManifestType.java \
Wed Jul 30 15:27:25 2008 @@ -0,0 +1,122 @@
+/*
+ * 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.w3._2000._09.xmldsig_;
+
+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.XmlID;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
+
+
+/**
+ * <p>Java class for ManifestType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within \
this class. + * 
+ * <pre>
+ * &lt;complexType name="ManifestType">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}Reference" \
maxOccurs="unbounded"/> + *       &lt;/sequence>
+ *       &lt;attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "ManifestType", propOrder = {
+    "reference"
+})
+public class ManifestType {
+
+    @XmlElement(name = "Reference", required = true)
+    protected List<ReferenceType> reference;
+    @XmlAttribute(name = "Id")
+    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+    @XmlID
+    @XmlSchemaType(name = "ID")
+    protected String id;
+
+    /**
+     * Gets the value of the reference 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 reference \
property. +     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getReference().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link ReferenceType }
+     * 
+     * 
+     */
+    public List<ReferenceType> getReference() {
+        if (reference == null) {
+            reference = new ArrayList<ReferenceType>();
+        }
+        return this.reference;
+    }
+
+    /**
+     * Gets the value of the id property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getId() {
+        return id;
+    }
+
+    /**
+     * Sets the value of the id property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setId(String value) {
+        this.id = value;
+    }
+
+}
+
\ 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