Author: alessio.soldano(a)jboss.com
Date: 2010-05-20 16:24:18 -0400 (Thu, 20 May 2010)
New Revision: 12293
Added:
spi/branches/jbossws-spi-1.1.2/src/main/java/org/jboss/wsf/spi/management/JMSEndpointResolver.java
Modified:
spi/branches/jbossws-spi-1.1.2/pom.xml
Log:
[JBPAPP-4359]
Modified: spi/branches/jbossws-spi-1.1.2/pom.xml
===================================================================
--- spi/branches/jbossws-spi-1.1.2/pom.xml 2010-05-20 16:46:56 UTC (rev 12292)
+++ spi/branches/jbossws-spi-1.1.2/pom.xml 2010-05-20 20:24:18 UTC (rev 12293)
@@ -29,6 +29,7 @@
<jboss.common.version>1.2.1.GA</jboss.common.version>
<jboss.microcontainer.version>1.0.2</jboss.microcontainer.version>
<jbossxb.version>1.0.0.SP1</jbossxb.version>
+ <jms.api.version>1.1</jms.api.version>
</properties>
<!-- Dependencies -->
@@ -54,6 +55,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>2.1</version>
Copied:
spi/branches/jbossws-spi-1.1.2/src/main/java/org/jboss/wsf/spi/management/JMSEndpointResolver.java
(from rev 11815,
spi/trunk/src/main/java/org/jboss/wsf/spi/management/JMSEndpointResolver.java)
===================================================================
---
spi/branches/jbossws-spi-1.1.2/src/main/java/org/jboss/wsf/spi/management/JMSEndpointResolver.java
(rev 0)
+++
spi/branches/jbossws-spi-1.1.2/src/main/java/org/jboss/wsf/spi/management/JMSEndpointResolver.java 2010-05-20
20:24:18 UTC (rev 12293)
@@ -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(a)jboss.com
+ * @since 19-Mar-2010
+ *
+ */
+public interface JMSEndpointResolver extends EndpointResolver
+{
+ public void setDestination(Destination destination);
+}