Author: thomas.diesler(a)jboss.com
Date: 2008-04-18 16:18:20 -0400 (Fri, 18 Apr 2008)
New Revision: 6519
Modified:
spi/trunk/pom.xml
spi/trunk/src/main/java/org/jboss/wsf/spi/invocation/ExtensibleWebServiceContext.java
Log:
Use jbossws-parent
Modified: spi/trunk/pom.xml
===================================================================
--- spi/trunk/pom.xml 2008-04-18 20:18:13 UTC (rev 6518)
+++ spi/trunk/pom.xml 2008-04-18 20:18:20 UTC (rev 6519)
@@ -9,25 +9,27 @@
<version>3.0.0-SNAPSHOT</version>
- <organization>
- <name>JBoss, a division of Red Hat</name>
- <url>http://www.jboss.org</url>
- </organization>
- <url>http://maven.apache.org</url>
+ <!-- Parent -->
+ <parent>
+ <groupId>org.jboss.ws</groupId>
+ <artifactId>jbossws-parent</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ </parent>
+ <!-- Properties -->
+ <properties>
+ <dom4j.version>1.6.1</dom4j.version>
+ <getopt.version>1.0.13</getopt.version>
+ <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>
+ </properties>
+
<!-- Dependencies -->
<dependencies>
+
+ <!-- provided apis -->
<dependency>
- <groupId>dom4j</groupId>
- <artifactId>dom4j</artifactId>
- <version>1.6.1</version>
- </dependency>
- <dependency>
- <groupId>gnu-getopt</groupId>
- <artifactId>getopt</artifactId>
- <version>1.0.13</version>
- </dependency>
- <dependency>
<groupId>javax.ejb</groupId>
<artifactId>ejb-api</artifactId>
<version>3.0</version>
@@ -51,38 +53,67 @@
<version>2.1</version>
<scope>provided</scope>
</dependency>
+
+ <!-- jboss provided -->
<dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
+ <groupId>jboss.common</groupId>
+ <artifactId>jboss-common</artifactId>
+ <version>${jboss.common.version}</version>
+ <scope>provided</scope>
</dependency>
<dependency>
+ <groupId>org.jboss.microcontainer</groupId>
+ <artifactId>jboss-microcontainer</artifactId>
+ <version>${jboss.microcontainer.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jbossxb</artifactId>
+ <version>${jbossxb.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>jboss.common.core</groupId>
+ <artifactId>jboss-common-core</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>jboss.logging</groupId>
+ <artifactId>jboss-logging-spi</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>jboss.logging.log4j</groupId>
+ <artifactId>jboss-logging-log4j</artifactId>
+ </exclusion>
+ </exclusions>
+ <scope>provided</scope>
+ </dependency>
+
+ <!-- transitive dependencies -->
+ <dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.7.0</version>
- <scope>test</scope>
</dependency>
<dependency>
- <groupId>org.jboss.logging</groupId>
- <artifactId>jboss-logging-spi</artifactId>
- <version>2.0.5.GA</version>
+ <groupId>dom4j</groupId>
+ <artifactId>dom4j</artifactId>
+ <version>${dom4j.version}</version>
</dependency>
<dependency>
- <groupId>org.jboss.microcontainer</groupId>
- <artifactId>jboss-kernel</artifactId>
- <version>2.0.0.Beta4</version>
- <scope>provided</scope>
+ <groupId>gnu-getopt</groupId>
+ <artifactId>getopt</artifactId>
+ <version>${getopt.version}</version>
</dependency>
+
+ <!-- test dependencies -->
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
</dependencies>
- <!-- Parent -->
- <parent>
- <groupId>org.jboss</groupId>
- <artifactId>jboss-parent</artifactId>
- <version>3</version>
- </parent>
-
<!-- Plugins -->
<build>
<resources>
@@ -93,25 +124,6 @@
</resources>
<plugins>
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <manifest>
-
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
- </manifest>
- </archive>
- </configuration>
- </plugin>
- <plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
Modified:
spi/trunk/src/main/java/org/jboss/wsf/spi/invocation/ExtensibleWebServiceContext.java
===================================================================
---
spi/trunk/src/main/java/org/jboss/wsf/spi/invocation/ExtensibleWebServiceContext.java 2008-04-18
20:18:13 UTC (rev 6518)
+++
spi/trunk/src/main/java/org/jboss/wsf/spi/invocation/ExtensibleWebServiceContext.java 2008-04-18
20:18:20 UTC (rev 6519)
@@ -22,6 +22,7 @@
package org.jboss.wsf.spi.invocation;
import java.security.Principal;
+import java.util.Collection;
import javax.xml.ws.EndpointReference;
import javax.xml.ws.WebServiceContext;
@@ -29,6 +30,7 @@
import javax.xml.ws.handler.MessageContext;
import org.jboss.wsf.spi.deployment.AbstractExtensible;
+import org.w3c.dom.Element;
/**
* A WebServiceContext makes it possible for a web service endpoint implementation
@@ -66,4 +68,14 @@
{
throw new WebServiceException("Not implemented");
}
+
+ public EndpointReference getEndpointReference(Element... arg0)
+ {
+ throw new WebServiceException("Not implemented");
+ }
+
+ public <T extends EndpointReference> T getEndpointReference(Class<T> arg0,
Element... arg1)
+ {
+ throw new WebServiceException("Not implemented");
+ }
}
\ No newline at end of file
Show replies by date