Modified: juddi/branches/juddi-3.3.x/juddi-core/src/main/java/org/apache/juddi/model/Node.java URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/juddi-core/src/main/java/org/apache/juddi/model/Node.java?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/juddi-core/src/main/java/org/apache/juddi/model/Node.java (original) +++ juddi/branches/juddi-3.3.x/juddi-core/src/main/java/org/apache/juddi/model/Node.java Sat Nov 30 16:31:47 2013 @@ -45,6 +45,8 @@ public class Node implements java.io.Ser private String custodyTransferUrl; @Column(name="subscription_url", nullable = false, length=255) private String subscriptionUrl; + @Column(name="replication_url", nullable = true, length=255) + private String replicationUrl; @Column(name="proxy_transport", nullable = false, length=255) private String proxyTransport; @@ -61,7 +63,7 @@ public class Node implements java.io.Ser public Node(String custodyTransferUrl, String inquiryUrl, String juddiApiUrl, String name, String proxyTransport, - String publishUrl, String securityUrl, String subscriptionUrl) { + String publishUrl, String securityUrl, String subscriptionUrl, String replicationURL) { super(); this.custodyTransferUrl = custodyTransferUrl; this.inquiryUrl = inquiryUrl; @@ -71,6 +73,7 @@ public class Node implements java.io.Ser this.publishUrl = publishUrl; this.securityUrl = securityUrl; this.subscriptionUrl = subscriptionUrl; + this.replicationUrl=replicationURL; } public String getName() { @@ -136,6 +139,13 @@ public class Node implements java.io.Ser public void setSubscriptionUrl(String subscriptionUrl) { this.subscriptionUrl = subscriptionUrl; } + public String getReplicationUrl() { + return replicationUrl; + } + + public void setReplicationUrl(String replicationUrl) { + this.replicationUrl = replicationUrl; + } public String getJuddiApiUrl() { return juddiApiUrl;
Modified: juddi/branches/juddi-3.3.x/juddi-core/src/main/java/org/apache/juddi/model/UddiEntity.java URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/juddi-core/src/main/java/org/apache/juddi/model/UddiEntity.java?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/juddi-core/src/main/java/org/apache/juddi/model/UddiEntity.java (original) +++ juddi/branches/juddi-3.3.x/juddi-core/src/main/java/org/apache/juddi/model/UddiEntity.java Sat Nov 30 16:31:47 2013 @@ -89,7 +89,11 @@ public abstract class UddiEntity impleme this.modifiedIncludingChildren = modifiedIncludingChildren; } - @Column(name = "node_id", length = 255) + /** + * As of 3.3, node_id is a required field + * @return + */ + @Column(name = "node_id", nullable=false,length = 255) public String getNodeId() { return nodeId; } Modified: juddi/branches/juddi-3.3.x/juddi-core/src/main/java/org/apache/juddi/model/UddiEntityPublisher.java URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/juddi-core/src/main/java/org/apache/juddi/model/UddiEntityPublisher.java?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/juddi-core/src/main/java/org/apache/juddi/model/UddiEntityPublisher.java (original) +++ juddi/branches/juddi-3.3.x/juddi-core/src/main/java/org/apache/juddi/model/UddiEntityPublisher.java Sat Nov 30 16:31:47 2013 @@ -20,6 +20,8 @@ package org.apache.juddi.model; import java.util.List; import java.util.StringTokenizer; import java.util.Vector; +import java.util.logging.Level; +import java.util.logging.Logger; import javax.persistence.Column; import javax.persistence.EntityManager; @@ -27,6 +29,8 @@ import javax.persistence.Id; import javax.persistence.MappedSuperclass; import javax.persistence.Query; import javax.persistence.Transient; +import org.apache.juddi.config.AppConfig; +import org.apache.juddi.config.Property; import org.apache.juddi.keygen.KeyGenerator; import org.apache.juddi.query.util.DynamicQuery; @@ -39,7 +43,7 @@ import org.uddi.v3_service.DispositionRe @MappedSuperclass public class UddiEntityPublisher { - + private transient static final Logger logger = Logger.getLogger(UddiEntityPublisher.class.getCanonicalName()); protected String authorizedName; private List<String> keyGeneratorKeys = null; @@ -87,13 +91,26 @@ public class UddiEntityPublisher { keyGeneratorKeys = qry.getResultList(); } + /** + * Determines if *this publisher owns a specific key + * @param entity + * @return + */ public boolean isOwner(UddiEntity entity){ - boolean ret = false; - if (entity != null) { - if (entity.getAuthorizedName().equals(getAuthorizedName())) - ret = true; - } - return ret; + boolean ret = false; + try { + AppConfig instance = AppConfig.getInstance(); + + if (entity != null) { + if (entity.getAuthorizedName().equals(getAuthorizedName()) + && entity.getNodeId().equals((AppConfig.getConfiguration().getString(Property.JUDDI_NODE_ID)))) { + ret = true; + } + } + } catch (Exception ex) { + logger.log(Level.WARNING, "Error caught determining node id! Defaulting to access denied", ex); + } + return ret; } Modified: juddi/branches/juddi-3.3.x/juddi-core/src/main/java/org/apache/juddi/validation/ValidateNode.java URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/juddi-core/src/main/java/org/apache/juddi/validation/ValidateNode.java?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/juddi-core/src/main/java/org/apache/juddi/validation/ValidateNode.java (original) +++ juddi/branches/juddi-3.3.x/juddi-core/src/main/java/org/apache/juddi/validation/ValidateNode.java Sat Nov 30 16:31:47 2013 @@ -38,6 +38,7 @@ public class ValidateNode extends Valida super(publisher); } + private static final Logger logger = Logger.getLogger(ValidateNode.class.getCanonicalName()); /*------------------------------------------------------------------- validateSaveNode functions are specific to jUDDI. --------------------------------------------------------------------*/ @@ -88,6 +89,10 @@ public class ValidateNode extends Valida if (node.getSubscriptionListenerUrl() == null || node.getSubscriptionListenerUrl().length() == 0 || node.getSubscriptionListenerUrl().length() > 255) { throw new ValueNotAllowedException(new ErrorMessage("errors.node.NoSUBL")); } + if (node.getReplicationUrl()== null || node.getReplicationUrl().length() == 0 || node.getReplicationUrl().length() > 255) { + //throw new ValueNotAllowedException(new ErrorMessage("errors.node.NoSUBL")); + logger.log(Level.WARNING,"No replication url on save node request!"); + } if (node.getSubscriptionUrl() == null || node.getSubscriptionUrl().length() == 0 || node.getSubscriptionUrl().length() > 255) { throw new ValueNotAllowedException(new ErrorMessage("errors.node.NoSUB")); } Modified: juddi/branches/juddi-3.3.x/juddi-core/src/main/java/org/apache/juddi/validation/ValidatePublish.java URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/juddi-core/src/main/java/org/apache/juddi/validation/ValidatePublish.java?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/juddi-core/src/main/java/org/apache/juddi/validation/ValidatePublish.java (original) +++ juddi/branches/juddi-3.3.x/juddi-core/src/main/java/org/apache/juddi/validation/ValidatePublish.java Sat Nov 30 16:31:47 2013 @@ -82,8 +82,8 @@ import org.uddi.v3_service.DispositionRe * Provides validation of publish requests to Juddi * * @author <a href="mailto:[email protected]">Jeff Faath</a> - * @author <a href="mailto:[email protected]">Tom Cunningham</a> Modified by - * Alex O'Ree March 2013 to validate string length and ref integrity + * @author <a href="mailto:[email protected]">Tom Cunningham</a> + * @author <a href="mailto:[email protected]">Alex O'Ree</a> Modified March 2013 to validate string length and ref integrity * * Advisory, be careful calling AppConfig.getConfiguration() from within * validation functions, it may inadvertently cause infinite loops during the Modified: juddi/branches/juddi-3.3.x/juddi-dist/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/juddi-dist/pom.xml?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/juddi-dist/pom.xml (original) +++ juddi/branches/juddi-3.3.x/juddi-dist/pom.xml Sat Nov 30 16:31:47 2013 @@ -20,7 +20,7 @@ <parent> <groupId>org.apache.juddi</groupId> <artifactId>juddi-parent</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </parent> <artifactId>juddi-dist</artifactId> <name>jUDDI Distribution Assembly</name> Modified: juddi/branches/juddi-3.3.x/juddi-examples/create-partition/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/juddi-examples/create-partition/pom.xml?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/juddi-examples/create-partition/pom.xml (original) +++ juddi/branches/juddi-3.3.x/juddi-examples/create-partition/pom.xml Sat Nov 30 16:31:47 2013 @@ -3,7 +3,7 @@ <parent> <groupId>org.apache.juddi.example</groupId> <artifactId>juddi-examples</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>create-partition</artifactId> @@ -15,12 +15,12 @@ <dependency> <groupId>org.apache.juddi</groupId> <artifactId>uddi-ws</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.juddi</groupId> <artifactId>juddi-client</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </dependency> </dependencies> Modified: juddi/branches/juddi-3.3.x/juddi-examples/hello-world-embedded/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/juddi-examples/hello-world-embedded/pom.xml?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/juddi-examples/hello-world-embedded/pom.xml (original) +++ juddi/branches/juddi-3.3.x/juddi-examples/hello-world-embedded/pom.xml Sat Nov 30 16:31:47 2013 @@ -3,7 +3,7 @@ <parent> <groupId>org.apache.juddi.example</groupId> <artifactId>juddi-examples</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>hello-world-embedded</artifactId> @@ -15,17 +15,17 @@ <dependency> <groupId>org.apache.juddi</groupId> <artifactId>uddi-ws</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.juddi</groupId> <artifactId>juddi-client</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.juddi</groupId> <artifactId>juddi-core</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.derby</groupId> Modified: juddi/branches/juddi-3.3.x/juddi-examples/hello-world/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/juddi-examples/hello-world/pom.xml?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/juddi-examples/hello-world/pom.xml (original) +++ juddi/branches/juddi-3.3.x/juddi-examples/hello-world/pom.xml Sat Nov 30 16:31:47 2013 @@ -3,7 +3,7 @@ <parent> <groupId>org.apache.juddi.example</groupId> <artifactId>juddi-examples</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>hello-world</artifactId> @@ -15,12 +15,12 @@ <dependency> <groupId>org.apache.juddi</groupId> <artifactId>uddi-ws</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.juddi</groupId> <artifactId>juddi-client</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </dependency> </dependencies> Modified: juddi/branches/juddi-3.3.x/juddi-examples/more-uddi-samples/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/juddi-examples/more-uddi-samples/pom.xml?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/juddi-examples/more-uddi-samples/pom.xml (original) +++ juddi/branches/juddi-3.3.x/juddi-examples/more-uddi-samples/pom.xml Sat Nov 30 16:31:47 2013 @@ -5,11 +5,11 @@ <parent> <groupId>org.apache.juddi.example</groupId> <artifactId>juddi-examples</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </parent> <groupId>org.apache.juddi</groupId> <artifactId>more-uddi-samples</artifactId> - <version>3.2-SNAPSHOT</version> + <version>3.3-SNAPSHOT</version> <name>jUDDI Even More Examples and Samples</name> <url>http://maven.apache.org</url> <properties> @@ -25,7 +25,7 @@ <dependency> <groupId>${project.groupId}</groupId> <artifactId>juddi-client</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </dependency> </dependencies> </project> Modified: juddi/branches/juddi-3.3.x/juddi-examples/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/juddi-examples/pom.xml?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/juddi-examples/pom.xml (original) +++ juddi/branches/juddi-3.3.x/juddi-examples/pom.xml Sat Nov 30 16:31:47 2013 @@ -15,7 +15,7 @@ <parent> <groupId>org.apache.juddi</groupId> <artifactId>juddi-parent</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <groupId>org.apache.juddi.example</groupId> Modified: juddi/branches/juddi-3.3.x/juddi-examples/service-version/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/juddi-examples/service-version/pom.xml?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/juddi-examples/service-version/pom.xml (original) +++ juddi/branches/juddi-3.3.x/juddi-examples/service-version/pom.xml Sat Nov 30 16:31:47 2013 @@ -5,11 +5,11 @@ <parent> <groupId>org.apache.juddi.example</groupId> <artifactId>juddi-examples</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </parent> <groupId>org.apache.juddi</groupId> <artifactId>service-version</artifactId> - <version>3.2-SNAPSHOT</version> + <version>3.3-SNAPSHOT</version> <name>jUDDI Example Service Versioning</name> <url>http://maven.apache.org</url> <properties> @@ -25,7 +25,7 @@ <dependency> <groupId>${project.groupId}</groupId> <artifactId>juddi-client</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </dependency> </dependencies> </project> Modified: juddi/branches/juddi-3.3.x/juddi-examples/simple-browse/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/juddi-examples/simple-browse/pom.xml?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/juddi-examples/simple-browse/pom.xml (original) +++ juddi/branches/juddi-3.3.x/juddi-examples/simple-browse/pom.xml Sat Nov 30 16:31:47 2013 @@ -3,7 +3,7 @@ <parent> <groupId>org.apache.juddi.example</groupId> <artifactId>juddi-examples</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>simple-browse</artifactId> @@ -15,12 +15,12 @@ <dependency> <groupId>org.apache.juddi</groupId> <artifactId>uddi-ws</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.juddi</groupId> <artifactId>juddi-client</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </dependency> </dependencies> Modified: juddi/branches/juddi-3.3.x/juddi-examples/simple-publish/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/juddi-examples/simple-publish/pom.xml?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/juddi-examples/simple-publish/pom.xml (original) +++ juddi/branches/juddi-3.3.x/juddi-examples/simple-publish/pom.xml Sat Nov 30 16:31:47 2013 @@ -3,7 +3,7 @@ <parent> <groupId>org.apache.juddi.example</groupId> <artifactId>juddi-examples</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>simple-publish</artifactId> @@ -14,12 +14,12 @@ <dependency> <groupId>org.apache.juddi</groupId> <artifactId>uddi-ws</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.juddi</groupId> <artifactId>juddi-client</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </dependency> </dependencies> Modified: juddi/branches/juddi-3.3.x/juddi-examples/subscription-notification-amqp/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/juddi-examples/subscription-notification-amqp/pom.xml?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/juddi-examples/subscription-notification-amqp/pom.xml (original) +++ juddi/branches/juddi-3.3.x/juddi-examples/subscription-notification-amqp/pom.xml Sat Nov 30 16:31:47 2013 @@ -5,7 +5,7 @@ <parent> <groupId>org.apache.juddi.example</groupId> <artifactId>juddi-examples</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </parent> <artifactId>subscription-notification-amqp</artifactId> @@ -16,12 +16,12 @@ <dependency> <groupId>org.apache.juddi</groupId> <artifactId>uddi-ws</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.juddi</groupId> <artifactId>juddi-client</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> @@ -41,7 +41,7 @@ <dependency> <groupId>org.apache.juddi</groupId> <artifactId>juddi-core</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </dependency> </dependencies> </project> Modified: juddi/branches/juddi-3.3.x/juddi-examples/uddi-annotations/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/juddi-examples/uddi-annotations/pom.xml?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/juddi-examples/uddi-annotations/pom.xml (original) +++ juddi/branches/juddi-3.3.x/juddi-examples/uddi-annotations/pom.xml Sat Nov 30 16:31:47 2013 @@ -20,7 +20,7 @@ <parent> <groupId>org.apache.juddi.example</groupId> <artifactId>juddi-examples</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>uddi-annotations</artifactId> @@ -173,7 +173,7 @@ <plugin> <groupId>org.codehaus.cargo</groupId> <artifactId>cargo-maven2-plugin</artifactId> - <version>1.3.3</version> + <version>1.3.2</version> <configuration> <container> <containerId>tomcat6x</containerId> Modified: juddi/branches/juddi-3.3.x/juddi-examples/wsdl2uddi-lifecyle/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/juddi-examples/wsdl2uddi-lifecyle/pom.xml?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/juddi-examples/wsdl2uddi-lifecyle/pom.xml (original) +++ juddi/branches/juddi-3.3.x/juddi-examples/wsdl2uddi-lifecyle/pom.xml Sat Nov 30 16:31:47 2013 @@ -3,7 +3,7 @@ <parent> <groupId>org.apache.juddi.example</groupId> <artifactId>juddi-examples</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>wsdl2uddi-lifecycle</artifactId> @@ -170,7 +170,7 @@ <plugin> <groupId>org.codehaus.cargo</groupId> <artifactId>cargo-maven2-plugin</artifactId> - <version>1.3.3</version> + <version>1.3.2</version> <configuration> <container> <containerId>tomcat6x</containerId> @@ -199,7 +199,7 @@ <plugin> <groupId>org.codehaus.cargo</groupId> <artifactId>cargo-maven2-plugin</artifactId> - <version>1.3.3</version> + <version>1.3.2</version> <configuration> <container> <containerId>tomcat6x</containerId> Modified: juddi/branches/juddi-3.3.x/juddi-examples/wsdl2uddi/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/juddi-examples/wsdl2uddi/pom.xml?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/juddi-examples/wsdl2uddi/pom.xml (original) +++ juddi/branches/juddi-3.3.x/juddi-examples/wsdl2uddi/pom.xml Sat Nov 30 16:31:47 2013 @@ -3,7 +3,7 @@ <parent> <groupId>org.apache.juddi.example</groupId> <artifactId>juddi-examples</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>wsdl2uddi</artifactId> @@ -14,12 +14,12 @@ <dependency> <groupId>org.apache.juddi</groupId> <artifactId>uddi-ws</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.juddi</groupId> <artifactId>juddi-client</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </dependency> </dependencies> Modified: juddi/branches/juddi-3.3.x/juddi-gui-dsig/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/juddi-gui-dsig/pom.xml?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/juddi-gui-dsig/pom.xml (original) +++ juddi/branches/juddi-3.3.x/juddi-gui-dsig/pom.xml Sat Nov 30 16:31:47 2013 @@ -13,7 +13,7 @@ language governing permissions and * lim <parent> <groupId>org.apache.juddi</groupId> <artifactId>juddi-parent</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </parent> <artifactId>juddi-gui-dsig</artifactId> <name>jUDDI Web Client Digital Signature Applet</name> Modified: juddi/branches/juddi-3.3.x/juddi-gui/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/juddi-gui/pom.xml?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/juddi-gui/pom.xml (original) +++ juddi/branches/juddi-3.3.x/juddi-gui/pom.xml Sat Nov 30 16:31:47 2013 @@ -12,22 +12,22 @@ language governing permissions and * lim <parent> <groupId>org.apache.juddi</groupId> <artifactId>juddi-parent</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </parent> <artifactId>juddi-gui-war</artifactId> <packaging>war</packaging> - <name>jUDDI GUI WAR construction</name> + <name>jUDDI GUI WAR</name> <url>http://juddi.apache.org</url> <dependencies> <dependency> <groupId>org.apache.juddi</groupId> <artifactId>juddi-client</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.juddi</groupId> <artifactId>juddi-gui-dsig</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> <classifier>jar-with-dependencies</classifier> <scope>provided</scope> </dependency> Modified: juddi/branches/juddi-3.3.x/juddi-migration-tool/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/juddi-migration-tool/pom.xml?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/juddi-migration-tool/pom.xml (original) +++ juddi/branches/juddi-3.3.x/juddi-migration-tool/pom.xml Sat Nov 30 16:31:47 2013 @@ -5,7 +5,7 @@ <parent> <groupId>org.apache.juddi</groupId> <artifactId>juddi-parent</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </parent> <groupId>org.apache.juddi</groupId> @@ -28,7 +28,7 @@ <dependency> <groupId>${project.groupId}</groupId> <artifactId>juddi-client</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </dependency> <dependency> <groupId>commons-cli</groupId> Modified: juddi/branches/juddi-3.3.x/juddi-rest-cxf/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/juddi-rest-cxf/pom.xml?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/juddi-rest-cxf/pom.xml (original) +++ juddi/branches/juddi-3.3.x/juddi-rest-cxf/pom.xml Sat Nov 30 16:31:47 2013 @@ -5,7 +5,7 @@ <parent> <groupId>org.apache.juddi</groupId> <artifactId>juddi-parent</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </parent> <groupId>org.apache.juddi</groupId> <artifactId>juddi-rest-cxf</artifactId> Modified: juddi/branches/juddi-3.3.x/juddi-tomcat/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/juddi-tomcat/pom.xml?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/juddi-tomcat/pom.xml (original) +++ juddi/branches/juddi-3.3.x/juddi-tomcat/pom.xml Sat Nov 30 16:31:47 2013 @@ -20,7 +20,7 @@ <parent> <groupId>org.apache.juddi</groupId> <artifactId>juddi-parent</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </parent> <artifactId>juddi-tomcat</artifactId> <name>jUDDI Tomcat Packaging</name> Modified: juddi/branches/juddi-3.3.x/juddiv3-war/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/juddiv3-war/pom.xml?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/juddiv3-war/pom.xml (original) +++ juddi/branches/juddi-3.3.x/juddiv3-war/pom.xml Sat Nov 30 16:31:47 2013 @@ -13,7 +13,7 @@ <parent> <groupId>org.apache.juddi</groupId> <artifactId>juddi-parent</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </parent> <artifactId>juddiv3-war</artifactId> <packaging>war</packaging> @@ -24,7 +24,7 @@ <dependency> <artifactId>uddi-ws</artifactId> <groupId>org.apache.juddi</groupId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </dependency> <dependency> <groupId>commons-logging</groupId> @@ -108,7 +108,7 @@ <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-entitymanager</artifactId> - <version>3.3.1.ga</version> + <version>3.2.1.ga</version> <scope>provided</scope> </dependency> @@ -163,7 +163,7 @@ <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-entitymanager</artifactId> - <version>3.3.1.ga</version> + <version>3.2.1.ga</version> <scope>provided</scope> </dependency> <dependency> @@ -306,7 +306,7 @@ <dependency> <groupId>org.codehaus.jettison</groupId> <artifactId>jettison</artifactId> - <version>1.3.3</version> + <version>1.3.2</version> </dependency> <!--END added AO 6/8/2013 support for JSON encoding on REST endpoints --> <dependency> Modified: juddi/branches/juddi-3.3.x/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/pom.xml?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/pom.xml (original) +++ juddi/branches/juddi-3.3.x/pom.xml Sat Nov 30 16:31:47 2013 @@ -24,7 +24,7 @@ <packaging>pom</packaging> <groupId>org.apache.juddi</groupId> <artifactId>juddi-parent</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> <name>jUDDI_v3 Parent</name> <description>jUDDI (pronounced "Judy") is an open source Java implementation of the Universal Description, Discovery, and @@ -40,7 +40,7 @@ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <cxf.version>2.7.5</cxf.version> - <springframework.version>3.2.2.RELEASE</springframework.version> + <springframework.version>3.2.5.RELEASE</springframework.version> </properties> <issueManagement> Modified: juddi/branches/juddi-3.3.x/uddi-client-dist/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-client-dist/pom.xml?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/uddi-client-dist/pom.xml (original) +++ juddi/branches/juddi-3.3.x/uddi-client-dist/pom.xml Sat Nov 30 16:31:47 2013 @@ -13,7 +13,7 @@ <parent> <groupId>org.apache.juddi</groupId> <artifactId>juddi-parent</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </parent> <artifactId>uddi-client-dist</artifactId> <name>UDDI Client Distribution Assembly</name> Modified: juddi/branches/juddi-3.3.x/uddi-tck-base/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-tck-base/pom.xml?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/uddi-tck-base/pom.xml (original) +++ juddi/branches/juddi-3.3.x/uddi-tck-base/pom.xml Sat Nov 30 16:31:47 2013 @@ -19,7 +19,7 @@ <parent> <groupId>org.apache.juddi</groupId> <artifactId>juddi-parent</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </parent> <artifactId>uddi-tck-base</artifactId> <packaging>bundle</packaging> Modified: juddi/branches/juddi-3.3.x/uddi-tck/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-tck/pom.xml?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/uddi-tck/pom.xml (original) +++ juddi/branches/juddi-3.3.x/uddi-tck/pom.xml Sat Nov 30 16:31:47 2013 @@ -20,7 +20,7 @@ <parent> <groupId>org.apache.juddi</groupId> <artifactId>juddi-parent</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </parent> <artifactId>uddi-tck</artifactId> <packaging>bundle</packaging> Modified: juddi/branches/juddi-3.3.x/uddi-ws/pom.xml URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-ws/pom.xml?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/uddi-ws/pom.xml (original) +++ juddi/branches/juddi-3.3.x/uddi-ws/pom.xml Sat Nov 30 16:31:47 2013 @@ -20,7 +20,7 @@ <parent> <groupId>org.apache.juddi</groupId> <artifactId>juddi-parent</artifactId> - <version>3.2.0-SNAPSHOT</version> + <version>3.3.0-SNAPSHOT</version> </parent> <artifactId>uddi-ws</artifactId> <packaging>bundle</packaging> Modified: juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/Node.java URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/Node.java?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/Node.java (original) +++ juddi/branches/juddi-3.3.x/uddi-ws/src/main/java/org/apache/juddi/api_v3/Node.java Sat Nov 30 16:31:47 2013 @@ -40,6 +40,7 @@ import javax.xml.bind.annotation.XmlType "securityUrl", "subscriptionUrl", "subscriptionListenerUrl", + "replicationUrl", "juddiApiUrl", "proxyTransport", "factoryInitial", @@ -59,6 +60,7 @@ public class Node implements Serializabl private String securityUrl; private String subscriptionUrl; private String subscriptionListenerUrl; + private String replicationUrl; private String juddiApiUrl; private String proxyTransport; private String factoryInitial; @@ -134,6 +136,12 @@ public class Node implements Serializabl public void setSubscriptionListenerUrl(String subscriptionListenerUrl) { this.subscriptionListenerUrl = subscriptionListenerUrl; } + public String getReplicationUrl() { + return replicationUrl; + } + public void setReplicationUrl(String replicationUrl) { + this.replicationUrl = replicationUrl; + } public String getFactoryInitial() { return factoryInitial; } Modified: juddi/branches/juddi-3.3.x/uddi-ws/src/main/resources/juddi_api_v1.wsdl URL: http://svn.apache.org/viewvc/juddi/branches/juddi-3.3.x/uddi-ws/src/main/resources/juddi_api_v1.wsdl?rev=1546742&r1=1546741&r2=1546742&view=diff ============================================================================== --- juddi/branches/juddi-3.3.x/uddi-ws/src/main/resources/juddi_api_v1.wsdl (original) +++ juddi/branches/juddi-3.3.x/uddi-ws/src/main/resources/juddi_api_v1.wsdl Sat Nov 30 16:31:47 2013 @@ -918,6 +918,7 @@ <xs:element minOccurs="0" name="securityUrl" type="xs:string"/> <xs:element minOccurs="0" name="subscriptionUrl" type="xs:string"/> <xs:element minOccurs="0" name="subscriptionListenerUrl" type="xs:string"/> + <xs:element minOccurs="0" name="replicationUrl" type="xs:string"/> <xs:element minOccurs="0" name="juddiApiUrl" type="xs:string"/> <xs:element minOccurs="0" name="proxyTransport" type="xs:string"/> <xs:element minOccurs="0" name="factoryInitial" type="xs:string"/> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
