You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by jf...@apache.org on 2008/12/02 19:11:00 UTC

svn commit: r722552 [8/13] - in /webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org: ./ uddi/ uddi/api_v3/ uddi/custody_v3/ uddi/policy_v3/ uddi/policy_v3_instanceparms/ uddi/repl_v3/ uddi/sub_v3/ uddi/subr_v3/ uddi/v3_service/ uddi/vs_v3/ u...

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3/PolicyDescriptionType.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3/PolicyDescriptionType.java?rev=722552&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3/PolicyDescriptionType.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3/PolicyDescriptionType.java Tue Dec  2 10:10:56 2008
@@ -0,0 +1,105 @@
+/*
+ * 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.policy_v3;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.XmlValue;
+
+
+/**
+ * <p>Java class for policyDescription_type complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="policyDescription_type">
+ *   &lt;simpleContent>
+ *     &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
+ *       &lt;attribute ref="{http://www.w3.org/XML/1998/namespace}lang"/>
+ *     &lt;/extension>
+ *   &lt;/simpleContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "policyDescription_type", propOrder = {
+    "value"
+})
+public class PolicyDescriptionType {
+
+    @XmlValue
+    protected String value;
+    @XmlAttribute(namespace = "http://www.w3.org/XML/1998/namespace")
+    protected String lang;
+
+    /**
+     * Gets the value of the value property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getValue() {
+        return value;
+    }
+
+    /**
+     * Sets the value of the value property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setValue(String value) {
+        this.value = value;
+    }
+
+    /**
+     * Gets the value of the lang property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getLang() {
+        return lang;
+    }
+
+    /**
+     * Sets the value of the lang property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setLang(String value) {
+        this.lang = value;
+    }
+
+}
+
\ No newline at end of file

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3/PolicyDescriptionType.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

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

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3/package-info.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/AuthInfoUseType.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/AuthInfoUseType.java?rev=722552&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/AuthInfoUseType.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/AuthInfoUseType.java Tue Dec  2 10:10:56 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.policy_v3_instanceparms;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlEnumValue;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for authInfoUse_type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * &lt;simpleType name="authInfoUse_type">
+ *   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
+ *     &lt;enumeration value="required"/>
+ *     &lt;enumeration value="optional"/>
+ *     &lt;enumeration value="ignored"/>
+ *   &lt;/restriction>
+ * &lt;/simpleType>
+ * </pre>
+ * 
+ */
+@XmlType(name = "authInfoUse_type")
+@XmlEnum
+public enum AuthInfoUseType {
+
+    @XmlEnumValue("required")
+    REQUIRED("required"),
+    @XmlEnumValue("optional")
+    OPTIONAL("optional"),
+    @XmlEnumValue("ignored")
+    IGNORED("ignored");
+    private final String value;
+
+    AuthInfoUseType(String v) {
+        value = v;
+    }
+
+    public String value() {
+        return value;
+    }
+
+    public static AuthInfoUseType fromValue(String v) {
+        for (AuthInfoUseType c: AuthInfoUseType.values()) {
+            if (c.value.equals(v)) {
+                return c;
+            }
+        }
+        throw new IllegalArgumentException(v);
+    }
+
+}
+
\ No newline at end of file

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/AuthInfoUseType.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/FilterUsingFindAPIType.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/FilterUsingFindAPIType.java?rev=722552&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/FilterUsingFindAPIType.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/FilterUsingFindAPIType.java Tue Dec  2 10:10:56 2008
@@ -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.policy_v3_instanceparms;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlEnumValue;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for filterUsingFindAPI_type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * &lt;simpleType name="filterUsingFindAPI_type">
+ *   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
+ *     &lt;enumeration value="supported"/>
+ *     &lt;enumeration value="unsupported"/>
+ *   &lt;/restriction>
+ * &lt;/simpleType>
+ * </pre>
+ * 
+ */
+@XmlType(name = "filterUsingFindAPI_type")
+@XmlEnum
+public enum FilterUsingFindAPIType {
+
+    @XmlEnumValue("supported")
+    SUPPORTED("supported"),
+    @XmlEnumValue("unsupported")
+    UNSUPPORTED("unsupported");
+    private final String value;
+
+    FilterUsingFindAPIType(String v) {
+        value = v;
+    }
+
+    public String value() {
+        return value;
+    }
+
+    public static FilterUsingFindAPIType fromValue(String v) {
+        for (FilterUsingFindAPIType c: FilterUsingFindAPIType.values()) {
+            if (c.value.equals(v)) {
+                return c;
+            }
+        }
+        throw new IllegalArgumentException(v);
+    }
+
+}
+
\ No newline at end of file

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/FilterUsingFindAPIType.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/ObjectFactory.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/ObjectFactory.java?rev=722552&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/ObjectFactory.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/ObjectFactory.java Tue Dec  2 10:10:56 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.policy_v3_instanceparms;
+
+import java.math.BigInteger;
+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.policy_v3_instanceparms 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 _AuthInfoUse_QNAME = new QName("urn:uddi-org:policy_v3_instanceParms", "authInfoUse");
+    private final static QName _MaximumRequestMessageSize_QNAME = new QName("urn:uddi-org:policy_v3_instanceParms", "maximumRequestMessageSize");
+    private final static QName _UDDIinstanceParmsContainer_QNAME = new QName("urn:uddi-org:policy_v3_instanceParms", "UDDIinstanceParmsContainer");
+    private final static QName _FilterUsingFindAPI_QNAME = new QName("urn:uddi-org:policy_v3_instanceParms", "filterUsingFindAPI");
+    private final static QName _DefaultSortOrder_QNAME = new QName("urn:uddi-org:policy_v3_instanceParms", "defaultSortOrder");
+
+    /**
+     * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.uddi.policy_v3_instanceparms
+     * 
+     */
+    public ObjectFactory() {
+    }
+
+    /**
+     * Create an instance of {@link UDDIinstanceParmsContainerType }
+     * 
+     */
+    public UDDIinstanceParmsContainerType createUDDIinstanceParmsContainerType() {
+        return new UDDIinstanceParmsContainerType();
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link AuthInfoUseType }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "urn:uddi-org:policy_v3_instanceParms", name = "authInfoUse")
+    public JAXBElement<AuthInfoUseType> createAuthInfoUse(AuthInfoUseType value) {
+        return new JAXBElement<AuthInfoUseType>(_AuthInfoUse_QNAME, AuthInfoUseType.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "urn:uddi-org:policy_v3_instanceParms", name = "maximumRequestMessageSize")
+    public JAXBElement<BigInteger> createMaximumRequestMessageSize(BigInteger value) {
+        return new JAXBElement<BigInteger>(_MaximumRequestMessageSize_QNAME, BigInteger.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link UDDIinstanceParmsContainerType }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "urn:uddi-org:policy_v3_instanceParms", name = "UDDIinstanceParmsContainer")
+    public JAXBElement<UDDIinstanceParmsContainerType> createUDDIinstanceParmsContainer(UDDIinstanceParmsContainerType value) {
+        return new JAXBElement<UDDIinstanceParmsContainerType>(_UDDIinstanceParmsContainer_QNAME, UDDIinstanceParmsContainerType.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link FilterUsingFindAPIType }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "urn:uddi-org:policy_v3_instanceParms", name = "filterUsingFindAPI")
+    public JAXBElement<FilterUsingFindAPIType> createFilterUsingFindAPI(FilterUsingFindAPIType value) {
+        return new JAXBElement<FilterUsingFindAPIType>(_FilterUsingFindAPI_QNAME, FilterUsingFindAPIType.class, null, value);
+    }
+
+    /**
+     * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
+     * 
+     */
+    @XmlElementDecl(namespace = "urn:uddi-org:policy_v3_instanceParms", name = "defaultSortOrder")
+    public JAXBElement<String> createDefaultSortOrder(String value) {
+        return new JAXBElement<String>(_DefaultSortOrder_QNAME, String.class, null, value);
+    }
+
+}
+
\ No newline at end of file

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/ObjectFactory.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/UDDIinstanceParmsContainerType.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/UDDIinstanceParmsContainerType.java?rev=722552&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/UDDIinstanceParmsContainerType.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/UDDIinstanceParmsContainerType.java Tue Dec  2 10:10:56 2008
@@ -0,0 +1,89 @@
+/*
+ * 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.policy_v3_instanceparms;
+
+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.XmlType;
+import org.w3c.dom.Element;
+
+
+/**
+ * <p>Java class for UDDIinstanceParmsContainer_type complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="UDDIinstanceParmsContainer_type">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;any/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "UDDIinstanceParmsContainer_type", propOrder = {
+    "any"
+})
+public class UDDIinstanceParmsContainerType {
+
+    @XmlAnyElement(lax = true)
+    protected List<Object> any;
+
+    /**
+     * Gets the value of the any 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 any property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getAny().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link Object }
+     * {@link Element }
+     * 
+     * 
+     */
+    public List<Object> getAny() {
+        if (any == null) {
+            any = new ArrayList<Object>();
+        }
+        return this.any;
+    }
+
+}
+
\ No newline at end of file

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/UDDIinstanceParmsContainerType.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/package-info.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/package-info.java?rev=722552&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/package-info.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/package-info.java Tue Dec  2 10:10:56 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:policy_v3_instanceParms")
+package org.uddi.policy_v3_instanceparms;
+
\ No newline at end of file

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/policy_v3_instanceparms/package-info.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecord.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecord.java?rev=722552&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecord.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecord.java Tue Dec  2 10:10:56 2008
@@ -0,0 +1,363 @@
+/*
+ * 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.repl_v3;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlRootElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for anonymous complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType>
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="changeID" type="{urn:uddi-org:repl_v3}changeRecordID_type"/>
+ *         &lt;group ref="{urn:uddi-org:repl_v3}changeRecordPayload_type"/>
+ *       &lt;/sequence>
+ *       &lt;attribute name="acknowledgementRequested" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "", propOrder = {
+    "changeID",
+    "changeRecordNull",
+    "changeRecordNewData",
+    "changeRecordDelete",
+    "changeRecordPublisherAssertion",
+    "changeRecordHide",
+    "changeRecordDeleteAssertion",
+    "changeRecordAcknowledgement",
+    "changeRecordCorrection",
+    "changeRecordNewDataConditional",
+    "changeRecordConditionFailed"
+})
+@XmlRootElement(name = "changeRecord")
+public class ChangeRecord {
+
+    @XmlElement(required = true)
+    protected ChangeRecordIDType changeID;
+    protected Object changeRecordNull;
+    protected ChangeRecordNewData changeRecordNewData;
+    protected ChangeRecordDelete changeRecordDelete;
+    protected ChangeRecordPublisherAssertion changeRecordPublisherAssertion;
+    protected ChangeRecordHide changeRecordHide;
+    protected ChangeRecordDeleteAssertion changeRecordDeleteAssertion;
+    protected ChangeRecordAcknowledgement changeRecordAcknowledgement;
+    protected ChangeRecordCorrection changeRecordCorrection;
+    protected ChangeRecordNewDataConditional changeRecordNewDataConditional;
+    protected ChangeRecordConditionFailed changeRecordConditionFailed;
+    @XmlAttribute(required = true)
+    protected boolean acknowledgementRequested;
+
+    /**
+     * Gets the value of the changeID property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link ChangeRecordIDType }
+     *     
+     */
+    public ChangeRecordIDType getChangeID() {
+        return changeID;
+    }
+
+    /**
+     * Sets the value of the changeID property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link ChangeRecordIDType }
+     *     
+     */
+    public void setChangeID(ChangeRecordIDType value) {
+        this.changeID = value;
+    }
+
+    /**
+     * Gets the value of the changeRecordNull property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Object }
+     *     
+     */
+    public Object getChangeRecordNull() {
+        return changeRecordNull;
+    }
+
+    /**
+     * Sets the value of the changeRecordNull property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Object }
+     *     
+     */
+    public void setChangeRecordNull(Object value) {
+        this.changeRecordNull = value;
+    }
+
+    /**
+     * Gets the value of the changeRecordNewData property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link ChangeRecordNewData }
+     *     
+     */
+    public ChangeRecordNewData getChangeRecordNewData() {
+        return changeRecordNewData;
+    }
+
+    /**
+     * Sets the value of the changeRecordNewData property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link ChangeRecordNewData }
+     *     
+     */
+    public void setChangeRecordNewData(ChangeRecordNewData value) {
+        this.changeRecordNewData = value;
+    }
+
+    /**
+     * Gets the value of the changeRecordDelete property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link ChangeRecordDelete }
+     *     
+     */
+    public ChangeRecordDelete getChangeRecordDelete() {
+        return changeRecordDelete;
+    }
+
+    /**
+     * Sets the value of the changeRecordDelete property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link ChangeRecordDelete }
+     *     
+     */
+    public void setChangeRecordDelete(ChangeRecordDelete value) {
+        this.changeRecordDelete = value;
+    }
+
+    /**
+     * Gets the value of the changeRecordPublisherAssertion property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link ChangeRecordPublisherAssertion }
+     *     
+     */
+    public ChangeRecordPublisherAssertion getChangeRecordPublisherAssertion() {
+        return changeRecordPublisherAssertion;
+    }
+
+    /**
+     * Sets the value of the changeRecordPublisherAssertion property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link ChangeRecordPublisherAssertion }
+     *     
+     */
+    public void setChangeRecordPublisherAssertion(ChangeRecordPublisherAssertion value) {
+        this.changeRecordPublisherAssertion = value;
+    }
+
+    /**
+     * Gets the value of the changeRecordHide property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link ChangeRecordHide }
+     *     
+     */
+    public ChangeRecordHide getChangeRecordHide() {
+        return changeRecordHide;
+    }
+
+    /**
+     * Sets the value of the changeRecordHide property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link ChangeRecordHide }
+     *     
+     */
+    public void setChangeRecordHide(ChangeRecordHide value) {
+        this.changeRecordHide = value;
+    }
+
+    /**
+     * Gets the value of the changeRecordDeleteAssertion property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link ChangeRecordDeleteAssertion }
+     *     
+     */
+    public ChangeRecordDeleteAssertion getChangeRecordDeleteAssertion() {
+        return changeRecordDeleteAssertion;
+    }
+
+    /**
+     * Sets the value of the changeRecordDeleteAssertion property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link ChangeRecordDeleteAssertion }
+     *     
+     */
+    public void setChangeRecordDeleteAssertion(ChangeRecordDeleteAssertion value) {
+        this.changeRecordDeleteAssertion = value;
+    }
+
+    /**
+     * Gets the value of the changeRecordAcknowledgement property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link ChangeRecordAcknowledgement }
+     *     
+     */
+    public ChangeRecordAcknowledgement getChangeRecordAcknowledgement() {
+        return changeRecordAcknowledgement;
+    }
+
+    /**
+     * Sets the value of the changeRecordAcknowledgement property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link ChangeRecordAcknowledgement }
+     *     
+     */
+    public void setChangeRecordAcknowledgement(ChangeRecordAcknowledgement value) {
+        this.changeRecordAcknowledgement = value;
+    }
+
+    /**
+     * Gets the value of the changeRecordCorrection property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link ChangeRecordCorrection }
+     *     
+     */
+    public ChangeRecordCorrection getChangeRecordCorrection() {
+        return changeRecordCorrection;
+    }
+
+    /**
+     * Sets the value of the changeRecordCorrection property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link ChangeRecordCorrection }
+     *     
+     */
+    public void setChangeRecordCorrection(ChangeRecordCorrection value) {
+        this.changeRecordCorrection = value;
+    }
+
+    /**
+     * Gets the value of the changeRecordNewDataConditional property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link ChangeRecordNewDataConditional }
+     *     
+     */
+    public ChangeRecordNewDataConditional getChangeRecordNewDataConditional() {
+        return changeRecordNewDataConditional;
+    }
+
+    /**
+     * Sets the value of the changeRecordNewDataConditional property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link ChangeRecordNewDataConditional }
+     *     
+     */
+    public void setChangeRecordNewDataConditional(ChangeRecordNewDataConditional value) {
+        this.changeRecordNewDataConditional = value;
+    }
+
+    /**
+     * Gets the value of the changeRecordConditionFailed property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link ChangeRecordConditionFailed }
+     *     
+     */
+    public ChangeRecordConditionFailed getChangeRecordConditionFailed() {
+        return changeRecordConditionFailed;
+    }
+
+    /**
+     * Sets the value of the changeRecordConditionFailed property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link ChangeRecordConditionFailed }
+     *     
+     */
+    public void setChangeRecordConditionFailed(ChangeRecordConditionFailed value) {
+        this.changeRecordConditionFailed = value;
+    }
+
+    /**
+     * Gets the value of the acknowledgementRequested property.
+     * 
+     */
+    public boolean isAcknowledgementRequested() {
+        return acknowledgementRequested;
+    }
+
+    /**
+     * Sets the value of the acknowledgementRequested property.
+     * 
+     */
+    public void setAcknowledgementRequested(boolean value) {
+        this.acknowledgementRequested = value;
+    }
+
+}
+
\ No newline at end of file

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecord.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordAcknowledgement.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordAcknowledgement.java?rev=722552&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordAcknowledgement.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordAcknowledgement.java Tue Dec  2 10:10:56 2008
@@ -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.repl_v3;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlRootElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for anonymous complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType>
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="acknowledgedChange" type="{urn:uddi-org:repl_v3}changeRecordID_type"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "", propOrder = {
+    "acknowledgedChange"
+})
+@XmlRootElement(name = "changeRecordAcknowledgement")
+public class ChangeRecordAcknowledgement {
+
+    @XmlElement(required = true)
+    protected ChangeRecordIDType acknowledgedChange;
+
+    /**
+     * Gets the value of the acknowledgedChange property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link ChangeRecordIDType }
+     *     
+     */
+    public ChangeRecordIDType getAcknowledgedChange() {
+        return acknowledgedChange;
+    }
+
+    /**
+     * Sets the value of the acknowledgedChange property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link ChangeRecordIDType }
+     *     
+     */
+    public void setAcknowledgedChange(ChangeRecordIDType value) {
+        this.acknowledgedChange = value;
+    }
+
+}
+
\ No newline at end of file

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordAcknowledgement.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordConditionFailed.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordConditionFailed.java?rev=722552&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordConditionFailed.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordConditionFailed.java Tue Dec  2 10:10:56 2008
@@ -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.repl_v3;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlRootElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for anonymous complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType>
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="failedChangeID" type="{urn:uddi-org:repl_v3}changeRecordID_type"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "", propOrder = {
+    "failedChangeID"
+})
+@XmlRootElement(name = "changeRecordConditionFailed")
+public class ChangeRecordConditionFailed {
+
+    @XmlElement(required = true)
+    protected ChangeRecordIDType failedChangeID;
+
+    /**
+     * Gets the value of the failedChangeID property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link ChangeRecordIDType }
+     *     
+     */
+    public ChangeRecordIDType getFailedChangeID() {
+        return failedChangeID;
+    }
+
+    /**
+     * Sets the value of the failedChangeID property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link ChangeRecordIDType }
+     *     
+     */
+    public void setFailedChangeID(ChangeRecordIDType value) {
+        this.failedChangeID = value;
+    }
+
+}
+
\ No newline at end of file

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordConditionFailed.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordCorrection.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordCorrection.java?rev=722552&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordCorrection.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordCorrection.java Tue Dec  2 10:10:56 2008
@@ -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.repl_v3;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlRootElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for anonymous complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType>
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element ref="{urn:uddi-org:repl_v3}changeRecord"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "", propOrder = {
+    "changeRecord"
+})
+@XmlRootElement(name = "changeRecordCorrection")
+public class ChangeRecordCorrection {
+
+    @XmlElement(required = true)
+    protected ChangeRecord changeRecord;
+
+    /**
+     * Gets the value of the changeRecord property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link ChangeRecord }
+     *     
+     */
+    public ChangeRecord getChangeRecord() {
+        return changeRecord;
+    }
+
+    /**
+     * Sets the value of the changeRecord property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link ChangeRecord }
+     *     
+     */
+    public void setChangeRecord(ChangeRecord value) {
+        this.changeRecord = value;
+    }
+
+}
+
\ No newline at end of file

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordCorrection.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordDelete.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordDelete.java?rev=722552&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordDelete.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordDelete.java Tue Dec  2 10:10:56 2008
@@ -0,0 +1,192 @@
+/*
+ * 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.repl_v3;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlRootElement;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+
+/**
+ * <p>Java class for anonymous complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType>
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;group ref="{urn:uddi-org:repl_v3}genericKey_type"/>
+ *         &lt;element name="modified" type="{urn:uddi-org:api_v3}timeInstant"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "", propOrder = {
+    "businessKey",
+    "tModelKey",
+    "serviceKey",
+    "bindingKey",
+    "modified"
+})
+@XmlRootElement(name = "changeRecordDelete")
+public class ChangeRecordDelete {
+
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected String businessKey;
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected String tModelKey;
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected String serviceKey;
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected String bindingKey;
+    @XmlElement(required = true)
+    protected XMLGregorianCalendar modified;
+
+    /**
+     * Gets the value of the businessKey property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getBusinessKey() {
+        return businessKey;
+    }
+
+    /**
+     * Sets the value of the businessKey property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setBusinessKey(String value) {
+        this.businessKey = 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 serviceKey property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getServiceKey() {
+        return serviceKey;
+    }
+
+    /**
+     * Sets the value of the serviceKey property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setServiceKey(String value) {
+        this.serviceKey = value;
+    }
+
+    /**
+     * Gets the value of the bindingKey property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getBindingKey() {
+        return bindingKey;
+    }
+
+    /**
+     * Sets the value of the bindingKey property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setBindingKey(String value) {
+        this.bindingKey = value;
+    }
+
+    /**
+     * Gets the value of the modified property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link XMLGregorianCalendar }
+     *     
+     */
+    public XMLGregorianCalendar getModified() {
+        return modified;
+    }
+
+    /**
+     * Sets the value of the modified property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link XMLGregorianCalendar }
+     *     
+     */
+    public void setModified(XMLGregorianCalendar value) {
+        this.modified = value;
+    }
+
+}
+
\ No newline at end of file

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordDelete.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordDeleteAssertion.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordDeleteAssertion.java?rev=722552&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordDeleteAssertion.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordDeleteAssertion.java Tue Dec  2 10:10:56 2008
@@ -0,0 +1,150 @@
+/*
+ * 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.repl_v3;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlRootElement;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
+import org.uddi.api_v3.PublisherAssertion;
+
+
+/**
+ * <p>Java class for anonymous complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType>
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element ref="{urn:uddi-org:api_v3}publisherAssertion"/>
+ *         &lt;element name="fromBusinessCheck" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         &lt;element name="toBusinessCheck" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         &lt;element name="modified" type="{urn:uddi-org:api_v3}timeInstant"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "", propOrder = {
+    "publisherAssertion",
+    "fromBusinessCheck",
+    "toBusinessCheck",
+    "modified"
+})
+@XmlRootElement(name = "changeRecordDeleteAssertion")
+public class ChangeRecordDeleteAssertion {
+
+    @XmlElement(namespace = "urn:uddi-org:api_v3", required = true)
+    protected PublisherAssertion publisherAssertion;
+    protected boolean fromBusinessCheck;
+    protected boolean toBusinessCheck;
+    @XmlElement(required = true)
+    protected XMLGregorianCalendar modified;
+
+    /**
+     * Gets the value of the publisherAssertion property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link PublisherAssertion }
+     *     
+     */
+    public PublisherAssertion getPublisherAssertion() {
+        return publisherAssertion;
+    }
+
+    /**
+     * Sets the value of the publisherAssertion property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link PublisherAssertion }
+     *     
+     */
+    public void setPublisherAssertion(PublisherAssertion value) {
+        this.publisherAssertion = value;
+    }
+
+    /**
+     * Gets the value of the fromBusinessCheck property.
+     * 
+     */
+    public boolean isFromBusinessCheck() {
+        return fromBusinessCheck;
+    }
+
+    /**
+     * Sets the value of the fromBusinessCheck property.
+     * 
+     */
+    public void setFromBusinessCheck(boolean value) {
+        this.fromBusinessCheck = value;
+    }
+
+    /**
+     * Gets the value of the toBusinessCheck property.
+     * 
+     */
+    public boolean isToBusinessCheck() {
+        return toBusinessCheck;
+    }
+
+    /**
+     * Sets the value of the toBusinessCheck property.
+     * 
+     */
+    public void setToBusinessCheck(boolean value) {
+        this.toBusinessCheck = value;
+    }
+
+    /**
+     * Gets the value of the modified property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link XMLGregorianCalendar }
+     *     
+     */
+    public XMLGregorianCalendar getModified() {
+        return modified;
+    }
+
+    /**
+     * Sets the value of the modified property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link XMLGregorianCalendar }
+     *     
+     */
+    public void setModified(XMLGregorianCalendar value) {
+        this.modified = value;
+    }
+
+}
+
\ No newline at end of file

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordDeleteAssertion.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordHide.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordHide.java?rev=722552&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordHide.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordHide.java Tue Dec  2 10:10:56 2008
@@ -0,0 +1,111 @@
+/*
+ * 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.repl_v3;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlRootElement;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+
+/**
+ * <p>Java class for anonymous complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType>
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element ref="{urn:uddi-org:api_v3}tModelKey"/>
+ *         &lt;element name="modified" type="{urn:uddi-org:api_v3}timeInstant"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "", propOrder = {
+    "tModelKey",
+    "modified"
+})
+@XmlRootElement(name = "changeRecordHide")
+public class ChangeRecordHide {
+
+    @XmlElement(namespace = "urn:uddi-org:api_v3", required = true)
+    protected String tModelKey;
+    @XmlElement(required = true)
+    protected XMLGregorianCalendar modified;
+
+    /**
+     * 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 modified property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link XMLGregorianCalendar }
+     *     
+     */
+    public XMLGregorianCalendar getModified() {
+        return modified;
+    }
+
+    /**
+     * Sets the value of the modified property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link XMLGregorianCalendar }
+     *     
+     */
+    public void setModified(XMLGregorianCalendar value) {
+        this.modified = value;
+    }
+
+}
+
\ No newline at end of file

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordHide.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordIDType.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordIDType.java?rev=722552&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordIDType.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordIDType.java Tue Dec  2 10:10:56 2008
@@ -0,0 +1,107 @@
+/*
+ * 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.repl_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 changeRecordID_type complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="changeRecordID_type">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="nodeID" type="{urn:uddi-org:repl_v3}operatorNodeID_type"/>
+ *         &lt;element name="originatingUSN" type="{urn:uddi-org:repl_v3}USN_type" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "changeRecordID_type", propOrder = {
+    "nodeID",
+    "originatingUSN"
+})
+public class ChangeRecordIDType {
+
+    @XmlElement(required = true)
+    protected String nodeID;
+    protected Long originatingUSN;
+
+    /**
+     * Gets the value of the nodeID property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getNodeID() {
+        return nodeID;
+    }
+
+    /**
+     * Sets the value of the nodeID property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setNodeID(String value) {
+        this.nodeID = value;
+    }
+
+    /**
+     * Gets the value of the originatingUSN property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Long }
+     *     
+     */
+    public Long getOriginatingUSN() {
+        return originatingUSN;
+    }
+
+    /**
+     * Sets the value of the originatingUSN property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Long }
+     *     
+     */
+    public void setOriginatingUSN(Long value) {
+        this.originatingUSN = value;
+    }
+
+}
+
\ No newline at end of file

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordIDType.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordNewData.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordNewData.java?rev=722552&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordNewData.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordNewData.java Tue Dec  2 10:10:56 2008
@@ -0,0 +1,201 @@
+/*
+ * 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.repl_v3;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlRootElement;
+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.OperationalInfo;
+import org.uddi.api_v3.TModel;
+
+
+/**
+ * <p>Java class for anonymous complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType>
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;choice>
+ *           &lt;element ref="{urn:uddi-org:api_v3}businessEntity"/>
+ *           &lt;element ref="{urn:uddi-org:api_v3}businessService"/>
+ *           &lt;element ref="{urn:uddi-org:api_v3}bindingTemplate"/>
+ *           &lt;element ref="{urn:uddi-org:api_v3}tModel"/>
+ *         &lt;/choice>
+ *         &lt;element ref="{urn:uddi-org:api_v3}operationalInfo"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "", propOrder = {
+    "businessEntity",
+    "businessService",
+    "bindingTemplate",
+    "tModel",
+    "operationalInfo"
+})
+@XmlRootElement(name = "changeRecordNewData")
+public class ChangeRecordNewData {
+
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected BusinessEntity businessEntity;
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected BusinessService businessService;
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected BindingTemplate bindingTemplate;
+    @XmlElement(namespace = "urn:uddi-org:api_v3")
+    protected TModel tModel;
+    @XmlElement(namespace = "urn:uddi-org:api_v3", required = true)
+    protected OperationalInfo operationalInfo;
+
+    /**
+     * Gets the value of the businessEntity property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link BusinessEntity }
+     *     
+     */
+    public BusinessEntity getBusinessEntity() {
+        return businessEntity;
+    }
+
+    /**
+     * Sets the value of the businessEntity property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link BusinessEntity }
+     *     
+     */
+    public void setBusinessEntity(BusinessEntity value) {
+        this.businessEntity = value;
+    }
+
+    /**
+     * Gets the value of the businessService property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link BusinessService }
+     *     
+     */
+    public BusinessService getBusinessService() {
+        return businessService;
+    }
+
+    /**
+     * Sets the value of the businessService property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link BusinessService }
+     *     
+     */
+    public void setBusinessService(BusinessService value) {
+        this.businessService = value;
+    }
+
+    /**
+     * Gets the value of the bindingTemplate property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link BindingTemplate }
+     *     
+     */
+    public BindingTemplate getBindingTemplate() {
+        return bindingTemplate;
+    }
+
+    /**
+     * Sets the value of the bindingTemplate property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link BindingTemplate }
+     *     
+     */
+    public void setBindingTemplate(BindingTemplate value) {
+        this.bindingTemplate = value;
+    }
+
+    /**
+     * Gets the value of the tModel property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link TModel }
+     *     
+     */
+    public TModel getTModel() {
+        return tModel;
+    }
+
+    /**
+     * Sets the value of the tModel property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link TModel }
+     *     
+     */
+    public void setTModel(TModel value) {
+        this.tModel = value;
+    }
+
+    /**
+     * Gets the value of the operationalInfo property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link OperationalInfo }
+     *     
+     */
+    public OperationalInfo getOperationalInfo() {
+        return operationalInfo;
+    }
+
+    /**
+     * Sets the value of the operationalInfo property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link OperationalInfo }
+     *     
+     */
+    public void setOperationalInfo(OperationalInfo value) {
+        this.operationalInfo = value;
+    }
+
+}
+
\ No newline at end of file

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordNewData.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordNewDataConditional.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordNewDataConditional.java?rev=722552&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordNewDataConditional.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordNewDataConditional.java Tue Dec  2 10:10:56 2008
@@ -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.repl_v3;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlRootElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for anonymous complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType>
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element ref="{urn:uddi-org:repl_v3}changeRecordNewData"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "", propOrder = {
+    "changeRecordNewData"
+})
+@XmlRootElement(name = "changeRecordNewDataConditional")
+public class ChangeRecordNewDataConditional {
+
+    @XmlElement(required = true)
+    protected ChangeRecordNewData changeRecordNewData;
+
+    /**
+     * Gets the value of the changeRecordNewData property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link ChangeRecordNewData }
+     *     
+     */
+    public ChangeRecordNewData getChangeRecordNewData() {
+        return changeRecordNewData;
+    }
+
+    /**
+     * Sets the value of the changeRecordNewData property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link ChangeRecordNewData }
+     *     
+     */
+    public void setChangeRecordNewData(ChangeRecordNewData value) {
+        this.changeRecordNewData = value;
+    }
+
+}
+
\ No newline at end of file

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordNewDataConditional.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordPublisherAssertion.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordPublisherAssertion.java?rev=722552&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordPublisherAssertion.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordPublisherAssertion.java Tue Dec  2 10:10:56 2008
@@ -0,0 +1,204 @@
+/*
+ * 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.repl_v3;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlRootElement;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
+import org.uddi.api_v3.PublisherAssertion;
+
+
+/**
+ * <p>Java class for anonymous complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType>
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element ref="{urn:uddi-org:api_v3}publisherAssertion"/>
+ *         &lt;element name="fromBusinessCheck" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         &lt;element name="toBusinessCheck" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         &lt;element name="modified" type="{urn:uddi-org:api_v3}timeInstant"/>
+ *         &lt;element ref="{urn:uddi-org:repl_v3}fromSignatures" minOccurs="0"/>
+ *         &lt;element ref="{urn:uddi-org:repl_v3}toSignatures" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "", propOrder = {
+    "publisherAssertion",
+    "fromBusinessCheck",
+    "toBusinessCheck",
+    "modified",
+    "fromSignatures",
+    "toSignatures"
+})
+@XmlRootElement(name = "changeRecordPublisherAssertion")
+public class ChangeRecordPublisherAssertion {
+
+    @XmlElement(namespace = "urn:uddi-org:api_v3", required = true)
+    protected PublisherAssertion publisherAssertion;
+    protected boolean fromBusinessCheck;
+    protected boolean toBusinessCheck;
+    @XmlElement(required = true)
+    protected XMLGregorianCalendar modified;
+    protected FromSignatures fromSignatures;
+    protected ToSignatures toSignatures;
+
+    /**
+     * Gets the value of the publisherAssertion property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link PublisherAssertion }
+     *     
+     */
+    public PublisherAssertion getPublisherAssertion() {
+        return publisherAssertion;
+    }
+
+    /**
+     * Sets the value of the publisherAssertion property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link PublisherAssertion }
+     *     
+     */
+    public void setPublisherAssertion(PublisherAssertion value) {
+        this.publisherAssertion = value;
+    }
+
+    /**
+     * Gets the value of the fromBusinessCheck property.
+     * 
+     */
+    public boolean isFromBusinessCheck() {
+        return fromBusinessCheck;
+    }
+
+    /**
+     * Sets the value of the fromBusinessCheck property.
+     * 
+     */
+    public void setFromBusinessCheck(boolean value) {
+        this.fromBusinessCheck = value;
+    }
+
+    /**
+     * Gets the value of the toBusinessCheck property.
+     * 
+     */
+    public boolean isToBusinessCheck() {
+        return toBusinessCheck;
+    }
+
+    /**
+     * Sets the value of the toBusinessCheck property.
+     * 
+     */
+    public void setToBusinessCheck(boolean value) {
+        this.toBusinessCheck = value;
+    }
+
+    /**
+     * Gets the value of the modified property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link XMLGregorianCalendar }
+     *     
+     */
+    public XMLGregorianCalendar getModified() {
+        return modified;
+    }
+
+    /**
+     * Sets the value of the modified property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link XMLGregorianCalendar }
+     *     
+     */
+    public void setModified(XMLGregorianCalendar value) {
+        this.modified = value;
+    }
+
+    /**
+     * Gets the value of the fromSignatures property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link FromSignatures }
+     *     
+     */
+    public FromSignatures getFromSignatures() {
+        return fromSignatures;
+    }
+
+    /**
+     * Sets the value of the fromSignatures property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link FromSignatures }
+     *     
+     */
+    public void setFromSignatures(FromSignatures value) {
+        this.fromSignatures = value;
+    }
+
+    /**
+     * Gets the value of the toSignatures property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link ToSignatures }
+     *     
+     */
+    public ToSignatures getToSignatures() {
+        return toSignatures;
+    }
+
+    /**
+     * Sets the value of the toSignatures property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link ToSignatures }
+     *     
+     */
+    public void setToSignatures(ToSignatures value) {
+        this.toSignatures = value;
+    }
+
+}
+
\ No newline at end of file

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecordPublisherAssertion.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecords.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecords.java?rev=722552&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecords.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecords.java Tue Dec  2 10:10:56 2008
@@ -0,0 +1,87 @@
+/*
+ * 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.repl_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.XmlRootElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for anonymous complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType>
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element ref="{urn:uddi-org:repl_v3}changeRecord" maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * 
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "", propOrder = {
+    "changeRecord"
+})
+@XmlRootElement(name = "changeRecords")
+public class ChangeRecords {
+
+    protected List<ChangeRecord> changeRecord;
+
+    /**
+     * Gets the value of the changeRecord 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 changeRecord property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getChangeRecord().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link ChangeRecord }
+     * 
+     * 
+     */
+    public List<ChangeRecord> getChangeRecord() {
+        if (changeRecord == null) {
+            changeRecord = new ArrayList<ChangeRecord>();
+        }
+        return this.changeRecord;
+    }
+
+}
+
\ No newline at end of file

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/uddi/repl_v3/ChangeRecords.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain



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