JBossWS SVN: r10109 - in spi/trunk/src/main/java/org/jboss/wsf/spi: addressing and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-05-25 14:09:46 -0400 (Mon, 25 May 2009)
New Revision: 10109
Added:
spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/
spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAP.java
spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPBuilder.java
spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPBuilderFactory.java
spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPConstants.java
spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPEndpoint.java
spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPRelatesTo.java
Log:
[JBWS-2106] First cut of common addressing api
Added: spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAP.java
===================================================================
--- spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAP.java (rev 0)
+++ spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAP.java 2009-05-25 18:09:46 UTC (rev 10109)
@@ -0,0 +1,76 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.wsf.spi.addressing;
+
+import java.util.List;
+import java.util.Map;
+
+import org.w3c.dom.Element;
+
+/**
+ * Message Addressing Properties is a wrapper for the stack-specific addressing properties
+ * classes implemented by JBossWS Native and CXF. It is used to localize dependence upon the WS
+ * stack.
+ *
+ * @author Andrew Dinn (adinn(a)redhat.com)
+ * @author alessio.soldano(a)jboss.com
+ *
+ */
+public interface MAP
+{
+ public String getTo();
+
+ public MAPEndpoint getFrom();
+
+ public String getMessageID();
+
+ public String getAction();
+
+ public MAPEndpoint getFaultTo();
+
+ public MAPEndpoint getReplyTo();
+
+ public MAPRelatesTo getRelatesTo();
+
+ public void setTo(String address);
+
+ public void setFrom(MAPEndpoint epref);
+
+ public void setMessageID(String messageID);
+
+ public void setAction(String action);
+
+ public void setReplyTo(MAPEndpoint epref);
+
+ public void setFaultTo(MAPEndpoint epref);
+
+ public void setRelatesTo(MAPRelatesTo relatesTo);
+
+ public void addReferenceParameter(Element refParam);
+
+ public List<Element> getReferenceParameters();
+
+ public void initializeAsDestination(MAPEndpoint epref);
+
+ public void installOutboundMap(Map<String, Object> requestContext, MAP map);
+
+}
Property changes on: spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAP.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPBuilder.java
===================================================================
--- spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPBuilder.java (rev 0)
+++ spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPBuilder.java 2009-05-25 18:09:46 UTC (rev 10109)
@@ -0,0 +1,60 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.wsf.spi.addressing;
+
+import java.util.Map;
+
+import javax.xml.namespace.QName;
+import javax.xml.ws.handler.MessageContext;
+
+/**
+ * MAPBuilder is a helper used to create objects used with class MAP.
+ *
+ * @author Andrew Dinn (adinn(a)redhat.com)
+ * @author alessio.soldano(a)jboss.com
+ *
+ */
+public interface MAPBuilder
+{
+ public MAP newMap();
+
+ /**
+ * retrieve the inbound server message address properties attached to a message context
+ * @param ctx the server message context
+ * @return
+ */
+ public MAP inboundMap(MessageContext ctx);
+
+ /**
+ * retrieve the outbound client message address properties attached to a message request map
+ * @param ctx the client request properties map
+ * @return
+ */
+ public MAP outboundMap(Map<String, Object> ctx);
+
+ public MAPConstants newConstants();
+
+ public MAPEndpoint newEndpoint(String address);
+
+ public MAPRelatesTo newRelatesTo(String id, QName type);
+
+}
Property changes on: spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPBuilder.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPBuilderFactory.java
===================================================================
--- spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPBuilderFactory.java (rev 0)
+++ spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPBuilderFactory.java 2009-05-25 18:09:46 UTC (rev 10109)
@@ -0,0 +1,39 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.wsf.spi.addressing;
+
+import org.jboss.wsf.spi.util.ServiceLoader;
+
+/**
+ * A factory that gets the MAPBuilder instance using the ServiceLoader
+ *
+ * @author alessio.soldano(a)jboss.com
+ * @since 25-May-2009
+ *
+ */
+public abstract class MAPBuilderFactory
+{
+ public static MAPBuilder getMAPBuilderInstance()
+ {
+ return (MAPBuilder)ServiceLoader.loadService(MAPBuilder.class.getName(), null);
+ }
+}
Property changes on: spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPBuilderFactory.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPConstants.java
===================================================================
--- spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPConstants.java (rev 0)
+++ spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPConstants.java 2009-05-25 18:09:46 UTC (rev 10109)
@@ -0,0 +1,47 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.wsf.spi.addressing;
+
+/**
+ * MAPConstants is a wrapper which works with class MAP
+ *
+ * @author Andrew Dinn (adinn(a)redhat.com)
+ * @author alessio.soldano(a)jboss.com
+ *
+ */
+public interface MAPConstants
+{
+ public String getAnonymousURI();
+
+ public String getNoneURI();
+
+ public String getClientAddressingProperties();
+
+ public String getClientAddressingPropertiesInbound();
+
+ public String getClientAddressingPropertiesOutbound();
+
+ public String getServerAddressingPropertiesInbound();
+
+ public String getServerAddressingPropertiesOutbound();
+
+}
Property changes on: spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPConstants.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPEndpoint.java
===================================================================
--- spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPEndpoint.java (rev 0)
+++ spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPEndpoint.java 2009-05-25 18:09:46 UTC (rev 10109)
@@ -0,0 +1,39 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.wsf.spi.addressing;
+
+import org.w3c.dom.Element;
+
+/**
+ * MAPEndpoint is a wrapper which works with class MAP.
+ *
+ * @author Andrew Dinn (adinn(a)redhat.com)
+ * @author alessio.soldano(a)jboss.com
+ *
+ */
+public interface MAPEndpoint
+{
+ public String getAddress();
+
+ public void addReferenceParameter(Element element);
+
+}
Property changes on: spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPEndpoint.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPRelatesTo.java
===================================================================
--- spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPRelatesTo.java (rev 0)
+++ spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPRelatesTo.java 2009-05-25 18:09:46 UTC (rev 10109)
@@ -0,0 +1,41 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.wsf.spi.addressing;
+
+import javax.xml.namespace.QName;
+
+/**
+ * MAPRelationship is a wrapper which works with class MAP.
+ *
+ * @author Andrew Dinn (adinn(a)redhat.com)
+ * @author alessio.soldano(a)jboss.com
+ *
+ */
+public interface MAPRelatesTo
+{
+ public String getRelatesTo();
+
+ public QName getType();
+
+ public void setType(QName type);
+
+}
Property changes on: spi/trunk/src/main/java/org/jboss/wsf/spi/addressing/MAPRelatesTo.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
15 years, 7 months
JBossWS SVN: r10108 - stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/soap.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-05-25 10:04:30 -0400 (Mon, 25 May 2009)
New Revision: 10108
Modified:
stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/soap/NodeImpl.java
Log:
Providing trivial impl for NodeImpl.getTextContent()
Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/soap/NodeImpl.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/soap/NodeImpl.java 2009-05-25 11:52:16 UTC (rev 10107)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/soap/NodeImpl.java 2009-05-25 14:04:30 UTC (rev 10108)
@@ -614,8 +614,7 @@
public String getTextContent() throws DOMException
{
- // FIXME getTextContent
- throw new NotImplementedException("getTextContent");
+ return domNode.getTextContent();
}
public Object getUserData(String key)
15 years, 7 months
JBossWS SVN: r10107 - in stack/native/tags/jbossws-native-3.2.0.Beta1: modules/client and 10 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-05-25 07:52:16 -0400 (Mon, 25 May 2009)
New Revision: 10107
Modified:
stack/native/tags/jbossws-native-3.2.0.Beta1/modules/client/pom.xml
stack/native/tags/jbossws-native-3.2.0.Beta1/modules/core/pom.xml
stack/native/tags/jbossws-native-3.2.0.Beta1/modules/jaxrpc/pom.xml
stack/native/tags/jbossws-native-3.2.0.Beta1/modules/jaxws-ext/pom.xml
stack/native/tags/jbossws-native-3.2.0.Beta1/modules/jaxws/pom.xml
stack/native/tags/jbossws-native-3.2.0.Beta1/modules/management/pom.xml
stack/native/tags/jbossws-native-3.2.0.Beta1/modules/resources/pom.xml
stack/native/tags/jbossws-native-3.2.0.Beta1/modules/saaj/pom.xml
stack/native/tags/jbossws-native-3.2.0.Beta1/modules/testsuite/framework-tests/pom.xml
stack/native/tags/jbossws-native-3.2.0.Beta1/modules/testsuite/native-tests/pom.xml
stack/native/tags/jbossws-native-3.2.0.Beta1/modules/testsuite/pom.xml
stack/native/tags/jbossws-native-3.2.0.Beta1/pom.xml
Log:
Fixing pom.xml
Modified: stack/native/tags/jbossws-native-3.2.0.Beta1/modules/client/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.2.0.Beta1/modules/client/pom.xml 2009-05-25 11:42:23 UTC (rev 10106)
+++ stack/native/tags/jbossws-native-3.2.0.Beta1/modules/client/pom.xml 2009-05-25 11:52:16 UTC (rev 10107)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.2.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.2.0.Beta1/modules/core/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.2.0.Beta1/modules/core/pom.xml 2009-05-25 11:42:23 UTC (rev 10106)
+++ stack/native/tags/jbossws-native-3.2.0.Beta1/modules/core/pom.xml 2009-05-25 11:52:16 UTC (rev 10107)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.2.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.2.0.Beta1/modules/jaxrpc/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.2.0.Beta1/modules/jaxrpc/pom.xml 2009-05-25 11:42:23 UTC (rev 10106)
+++ stack/native/tags/jbossws-native-3.2.0.Beta1/modules/jaxrpc/pom.xml 2009-05-25 11:52:16 UTC (rev 10107)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.2.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.2.0.Beta1/modules/jaxws/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.2.0.Beta1/modules/jaxws/pom.xml 2009-05-25 11:42:23 UTC (rev 10106)
+++ stack/native/tags/jbossws-native-3.2.0.Beta1/modules/jaxws/pom.xml 2009-05-25 11:52:16 UTC (rev 10107)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.2.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.2.0.Beta1/modules/jaxws-ext/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.2.0.Beta1/modules/jaxws-ext/pom.xml 2009-05-25 11:42:23 UTC (rev 10106)
+++ stack/native/tags/jbossws-native-3.2.0.Beta1/modules/jaxws-ext/pom.xml 2009-05-25 11:52:16 UTC (rev 10107)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.2.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.2.0.Beta1/modules/management/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.2.0.Beta1/modules/management/pom.xml 2009-05-25 11:42:23 UTC (rev 10106)
+++ stack/native/tags/jbossws-native-3.2.0.Beta1/modules/management/pom.xml 2009-05-25 11:52:16 UTC (rev 10107)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.2.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.2.0.Beta1/modules/resources/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.2.0.Beta1/modules/resources/pom.xml 2009-05-25 11:42:23 UTC (rev 10106)
+++ stack/native/tags/jbossws-native-3.2.0.Beta1/modules/resources/pom.xml 2009-05-25 11:52:16 UTC (rev 10107)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.2.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.2.0.Beta1/modules/saaj/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.2.0.Beta1/modules/saaj/pom.xml 2009-05-25 11:42:23 UTC (rev 10106)
+++ stack/native/tags/jbossws-native-3.2.0.Beta1/modules/saaj/pom.xml 2009-05-25 11:52:16 UTC (rev 10107)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.2.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.2.0.Beta1/modules/testsuite/framework-tests/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.2.0.Beta1/modules/testsuite/framework-tests/pom.xml 2009-05-25 11:42:23 UTC (rev 10106)
+++ stack/native/tags/jbossws-native-3.2.0.Beta1/modules/testsuite/framework-tests/pom.xml 2009-05-25 11:52:16 UTC (rev 10107)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-testsuite</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.2.0.Beta1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.2.0.Beta1/modules/testsuite/native-tests/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.2.0.Beta1/modules/testsuite/native-tests/pom.xml 2009-05-25 11:42:23 UTC (rev 10106)
+++ stack/native/tags/jbossws-native-3.2.0.Beta1/modules/testsuite/native-tests/pom.xml 2009-05-25 11:52:16 UTC (rev 10107)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-testsuite</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.2.0.Beta1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.2.0.Beta1/modules/testsuite/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.2.0.Beta1/modules/testsuite/pom.xml 2009-05-25 11:42:23 UTC (rev 10106)
+++ stack/native/tags/jbossws-native-3.2.0.Beta1/modules/testsuite/pom.xml 2009-05-25 11:52:16 UTC (rev 10107)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.2.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.2.0.Beta1/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.2.0.Beta1/pom.xml 2009-05-25 11:42:23 UTC (rev 10106)
+++ stack/native/tags/jbossws-native-3.2.0.Beta1/pom.xml 2009-05-25 11:52:16 UTC (rev 10107)
@@ -17,7 +17,7 @@
<artifactId>jbossws-native</artifactId>
<packaging>pom</packaging>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.2.0.Beta1</version>
<!-- Parent -->
<parent>
@@ -47,9 +47,9 @@
<!-- Properties -->
<properties>
- <jbossws.common.version>1.2.0-SNAPSHOT</jbossws.common.version>
- <jbossws.framework.version>3.2.0-SNAPSHOT</jbossws.framework.version>
- <jbossws.spi.version>1.2.0-SNAPSHOT</jbossws.spi.version>
+ <jbossws.common.version>1.2.0.Beta1</jbossws.common.version>
+ <jbossws.framework.version>3.2.0.Beta1</jbossws.framework.version>
+ <jbossws.spi.version>1.2.0.Beta1</jbossws.spi.version>
<jbossws.jboss500.version>3.2.0-SNAPSHOT</jbossws.jboss500.version>
<jbossws.jboss501.version>3.2.0-SNAPSHOT</jbossws.jboss501.version>
<!-- [JBWS-2505] -->
15 years, 7 months
JBossWS SVN: r10106 - stack/native/tags.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-05-25 07:42:23 -0400 (Mon, 25 May 2009)
New Revision: 10106
Added:
stack/native/tags/jbossws-native-3.2.0.Beta1/
Log:
Taggin jbossws-native-3.2.0.Beta1
Copied: stack/native/tags/jbossws-native-3.2.0.Beta1 (from rev 10105, stack/native/trunk)
15 years, 7 months
JBossWS SVN: r10105 - framework/tags/jbossws-framework-3.2.0.Beta1.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-05-25 07:38:37 -0400 (Mon, 25 May 2009)
New Revision: 10105
Modified:
framework/tags/jbossws-framework-3.2.0.Beta1/pom.xml
Log:
Fixing pom.xml
Modified: framework/tags/jbossws-framework-3.2.0.Beta1/pom.xml
===================================================================
--- framework/tags/jbossws-framework-3.2.0.Beta1/pom.xml 2009-05-25 11:36:23 UTC (rev 10104)
+++ framework/tags/jbossws-framework-3.2.0.Beta1/pom.xml 2009-05-25 11:38:37 UTC (rev 10105)
@@ -6,7 +6,7 @@
<artifactId>jbossws-framework</artifactId>
<packaging>jar</packaging>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.2.0.Beta1</version>
<!-- Parent -->
<parent>
@@ -24,8 +24,8 @@
<!-- Properties -->
<properties>
- <jbossws.common.version>1.2.0-SNAPSHOT</jbossws.common.version>
- <jbossws.spi.version>1.2.0-SNAPSHOT</jbossws.spi.version>
+ <jbossws.common.version>1.2.0.Beta1</jbossws.common.version>
+ <jbossws.spi.version>1.2.0.Beta1</jbossws.spi.version>
<jboss.common.version>1.2.1.GA</jboss.common.version>
<jbossxb.version>1.0.0.SP1</jbossxb.version>
</properties>
15 years, 7 months
JBossWS SVN: r10104 - framework/tags.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-05-25 07:36:23 -0400 (Mon, 25 May 2009)
New Revision: 10104
Added:
framework/tags/jbossws-framework-3.2.0.Beta1/
Log:
Tagging jbossws-framework-3.2.0.Beta1
Copied: framework/tags/jbossws-framework-3.2.0.Beta1 (from rev 10103, framework/trunk)
15 years, 7 months
JBossWS SVN: r10103 - common/tags/jbossws-common-1.2.0.Beta1.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-05-25 07:34:25 -0400 (Mon, 25 May 2009)
New Revision: 10103
Modified:
common/tags/jbossws-common-1.2.0.Beta1/pom.xml
Log:
Fixing pom.xml
Modified: common/tags/jbossws-common-1.2.0.Beta1/pom.xml
===================================================================
--- common/tags/jbossws-common-1.2.0.Beta1/pom.xml 2009-05-25 11:34:15 UTC (rev 10102)
+++ common/tags/jbossws-common-1.2.0.Beta1/pom.xml 2009-05-25 11:34:25 UTC (rev 10103)
@@ -8,7 +8,7 @@
<artifactId>jbossws-common</artifactId>
<packaging>jar</packaging>
- <version>1.2.0-SNAPSHOT</version>
+ <version>1.2.0.Beta1</version>
<!-- Parent -->
<parent>
@@ -26,7 +26,7 @@
<!-- Properties -->
<properties>
- <jbossws.spi.version>1.2.0-SNAPSHOT</jbossws.spi.version>
+ <jbossws.spi.version>1.2.0.Beta1</jbossws.spi.version>
<jboss.common.version>2.2.7.GA</jboss.common.version>
<jboss.microcontainer.version>1.0.2</jboss.microcontainer.version>
</properties>
15 years, 7 months
JBossWS SVN: r10102 - spi/tags/jbossws-spi-1.2.0.Beta1.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-05-25 07:34:15 -0400 (Mon, 25 May 2009)
New Revision: 10102
Modified:
spi/tags/jbossws-spi-1.2.0.Beta1/pom.xml
Log:
Fixing pom.xml
Modified: spi/tags/jbossws-spi-1.2.0.Beta1/pom.xml
===================================================================
--- spi/tags/jbossws-spi-1.2.0.Beta1/pom.xml 2009-05-25 11:33:08 UTC (rev 10101)
+++ spi/tags/jbossws-spi-1.2.0.Beta1/pom.xml 2009-05-25 11:34:15 UTC (rev 10102)
@@ -6,7 +6,7 @@
<artifactId>jbossws-spi</artifactId>
<packaging>jar</packaging>
- <version>1.2.0-SNAPSHOT</version>
+ <version>1.2.0.Beta1</version>
<!-- Parent -->
<parent>
15 years, 7 months
JBossWS SVN: r10101 - common/tags.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-05-25 07:33:08 -0400 (Mon, 25 May 2009)
New Revision: 10101
Added:
common/tags/jbossws-common-1.2.0.Beta1/
Log:
Taggin jbossws-common-1.2.0.Beta1
Copied: common/tags/jbossws-common-1.2.0.Beta1 (from rev 10100, common/trunk)
15 years, 7 months
JBossWS SVN: r10100 - spi/tags.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-05-25 07:30:15 -0400 (Mon, 25 May 2009)
New Revision: 10100
Added:
spi/tags/jbossws-spi-1.2.0.Beta1/
Removed:
spi/tags/jbossws-spi-3.2.0.Beta1/
Log:
Remaning tag, jbossws-spi-1.2.0.Beta1
Copied: spi/tags/jbossws-spi-1.2.0.Beta1 (from rev 10099, spi/tags/jbossws-spi-3.2.0.Beta1)
15 years, 7 months