[jbossws-commits] JBossWS SVN: r11815 - in spi/trunk: src/main/java/org/jboss/wsf/spi/management and 1 other directory.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Fri Mar 19 06:44:19 EDT 2010


Author: alessio.soldano at jboss.com
Date: 2010-03-19 06:44:18 -0400 (Fri, 19 Mar 2010)
New Revision: 11815

Added:
   spi/trunk/src/main/java/org/jboss/wsf/spi/management/JMSEndpointResolver.java
Modified:
   spi/trunk/pom.xml
Log:
[JBWS-2966] Adding a resolver interface for JMS endpoints


Modified: spi/trunk/pom.xml
===================================================================
--- spi/trunk/pom.xml	2010-03-19 10:00:35 UTC (rev 11814)
+++ spi/trunk/pom.xml	2010-03-19 10:44:18 UTC (rev 11815)
@@ -29,6 +29,7 @@
     <getopt.version>1.0.13</getopt.version>
     <sun.jaxb.version>2.2</sun.jaxb.version>
     <jaxws.api.version>2.2</jaxws.api.version>
+    <jms.api.version>1.1</jms.api.version>
     <jboss.microcontainer.version>2.0.8.GA</jboss.microcontainer.version>
     <jboss.web.version>2.1.3.GA</jboss.web.version>
     <junit.version>3.8.2</junit.version>
@@ -51,6 +52,12 @@
       <scope>provided</scope>
     </dependency>
     <dependency>
+      <groupId>javax.jms</groupId>
+      <artifactId>jms</artifactId>
+      <version>${jms.api.version}</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
       <groupId>javax.xml.ws</groupId>
       <artifactId>jaxws-api</artifactId>
       <version>${jaxws.api.version}</version>

Added: spi/trunk/src/main/java/org/jboss/wsf/spi/management/JMSEndpointResolver.java
===================================================================
--- spi/trunk/src/main/java/org/jboss/wsf/spi/management/JMSEndpointResolver.java	                        (rev 0)
+++ spi/trunk/src/main/java/org/jboss/wsf/spi/management/JMSEndpointResolver.java	2010-03-19 10:44:18 UTC (rev 11815)
@@ -0,0 +1,36 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, 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.management;
+
+import javax.jms.Destination;
+
+/**
+ * An endpoint resolver for JMS endpoints
+ * 
+ * @author alessio.soldano at jboss.com
+ * @since 19-Mar-2010
+ *
+ */
+public interface JMSEndpointResolver extends EndpointResolver
+{
+   public void setDestination(Destination destination);
+}


Property changes on: spi/trunk/src/main/java/org/jboss/wsf/spi/management/JMSEndpointResolver.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF



More information about the jbossws-commits mailing list