Author: objectiser
Date: 2012-03-26 05:22:59 -0400 (Mon, 26 Mar 2012)
New Revision: 1505
Modified:
dsp/branches/DSP-1.0.x/api/pom.xml
dsp/branches/DSP-1.0.x/api/src/main/java/org/jboss/soa/dsp/ws/WebServiceProviderGenerator.java
dsp/branches/DSP-1.0.x/distribution/pom.xml
dsp/branches/DSP-1.0.x/integration/jbossas5/pom.xml
dsp/branches/DSP-1.0.x/integration/jbossas6/pom.xml
dsp/branches/DSP-1.0.x/integration/pom.xml
dsp/branches/DSP-1.0.x/integration/tomcat/pom.xml
dsp/branches/DSP-1.0.x/pom.xml
Log:
RIFTSAW-485 - add support for WS-Security with jbossws-native.
Modified: dsp/branches/DSP-1.0.x/api/pom.xml
===================================================================
--- dsp/branches/DSP-1.0.x/api/pom.xml 2012-03-23 23:33:20 UTC (rev 1504)
+++ dsp/branches/DSP-1.0.x/api/pom.xml 2012-03-26 09:22:59 UTC (rev 1505)
@@ -5,13 +5,13 @@
<groupId>org.jboss.soa.dsp</groupId>
<artifactId>dsp-api</artifactId>
<packaging>jar</packaging>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
<name>SOA::DSP::API</name>
<parent>
<groupId>org.jboss.soa.dsp</groupId>
<artifactId>dsp</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
</parent>
<dependencies>
Modified:
dsp/branches/DSP-1.0.x/api/src/main/java/org/jboss/soa/dsp/ws/WebServiceProviderGenerator.java
===================================================================
---
dsp/branches/DSP-1.0.x/api/src/main/java/org/jboss/soa/dsp/ws/WebServiceProviderGenerator.java 2012-03-23
23:33:20 UTC (rev 1504)
+++
dsp/branches/DSP-1.0.x/api/src/main/java/org/jboss/soa/dsp/ws/WebServiceProviderGenerator.java 2012-03-26
09:22:59 UTC (rev 1505)
@@ -169,6 +169,8 @@
createStringGetter(impl, stringType, "wsdlLocation",
"getWsdlLocation");
createStringGetter(impl, stringType, "portName", "getPortName");
+ postProcess(classFile, impl, attr);
+
// ------------
// freeze
@@ -186,6 +188,17 @@
return obj;
}
+ /**
+ * This method performs optional post processing of the generated
+ * class.
+ *
+ * @param classFile The class file
+ * @param impl The class
+ * @param attr Annotations attribute
+ */
+ protected void postProcess(ClassFile classFile, CtClass impl, AnnotationsAttribute
attr) {
+ }
+
public void writeClass(java.io.File war) throws Exception {
String dir=war.getAbsolutePath()+java.io.File.separatorChar+"WEB-INF"+
Modified: dsp/branches/DSP-1.0.x/distribution/pom.xml
===================================================================
--- dsp/branches/DSP-1.0.x/distribution/pom.xml 2012-03-23 23:33:20 UTC (rev 1504)
+++ dsp/branches/DSP-1.0.x/distribution/pom.xml 2012-03-26 09:22:59 UTC (rev 1505)
@@ -4,13 +4,13 @@
<groupId>org.jboss.soa.dsp</groupId>
<artifactId>distribution</artifactId>
<packaging>pom</packaging>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
<name>SOA::DSP::Distribution</name>
<parent>
<groupId>org.jboss.soa.dsp</groupId>
<artifactId>dsp</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
</parent>
<properties>
Modified: dsp/branches/DSP-1.0.x/integration/jbossas5/pom.xml
===================================================================
--- dsp/branches/DSP-1.0.x/integration/jbossas5/pom.xml 2012-03-23 23:33:20 UTC (rev
1504)
+++ dsp/branches/DSP-1.0.x/integration/jbossas5/pom.xml 2012-03-26 09:22:59 UTC (rev
1505)
@@ -5,13 +5,13 @@
<groupId>org.jboss.soa.dsp</groupId>
<artifactId>dsp-jbossas5</artifactId>
<packaging>jar</packaging>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
<name>SOA::DSP::Integration::JBossAS5</name>
<parent>
<groupId>org.jboss.soa.dsp</groupId>
<artifactId>integration</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
</parent>
<properties>
Modified: dsp/branches/DSP-1.0.x/integration/jbossas6/pom.xml
===================================================================
--- dsp/branches/DSP-1.0.x/integration/jbossas6/pom.xml 2012-03-23 23:33:20 UTC (rev
1504)
+++ dsp/branches/DSP-1.0.x/integration/jbossas6/pom.xml 2012-03-26 09:22:59 UTC (rev
1505)
@@ -5,13 +5,13 @@
<groupId>org.jboss.soa.dsp</groupId>
<artifactId>dsp-jbossas6</artifactId>
<packaging>jar</packaging>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
<name>SOA::DSP::Integration::JBossAS6</name>
<parent>
<groupId>org.jboss.soa.dsp</groupId>
<artifactId>integration</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
</parent>
<properties>
Modified: dsp/branches/DSP-1.0.x/integration/pom.xml
===================================================================
--- dsp/branches/DSP-1.0.x/integration/pom.xml 2012-03-23 23:33:20 UTC (rev 1504)
+++ dsp/branches/DSP-1.0.x/integration/pom.xml 2012-03-26 09:22:59 UTC (rev 1505)
@@ -5,13 +5,13 @@
<groupId>org.jboss.soa.dsp</groupId>
<artifactId>integration</artifactId>
<packaging>pom</packaging>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
<name>SOA::DSP::Integration</name>
<parent>
<groupId>org.jboss.soa.dsp</groupId>
<artifactId>dsp</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
</parent>
<modules>
Modified: dsp/branches/DSP-1.0.x/integration/tomcat/pom.xml
===================================================================
--- dsp/branches/DSP-1.0.x/integration/tomcat/pom.xml 2012-03-23 23:33:20 UTC (rev 1504)
+++ dsp/branches/DSP-1.0.x/integration/tomcat/pom.xml 2012-03-26 09:22:59 UTC (rev 1505)
@@ -5,13 +5,13 @@
<groupId>org.jboss.soa.dsp</groupId>
<artifactId>dsp-tomcat</artifactId>
<packaging>jar</packaging>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
<name>SOA::DSP::Integration::Tomcat</name>
<parent>
<groupId>org.jboss.soa.dsp</groupId>
<artifactId>integration</artifactId>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
</parent>
<dependencies>
Modified: dsp/branches/DSP-1.0.x/pom.xml
===================================================================
--- dsp/branches/DSP-1.0.x/pom.xml 2012-03-23 23:33:20 UTC (rev 1504)
+++ dsp/branches/DSP-1.0.x/pom.xml 2012-03-26 09:22:59 UTC (rev 1505)
@@ -5,11 +5,11 @@
<groupId>org.jboss.soa.dsp</groupId>
<artifactId>dsp</artifactId>
<packaging>pom</packaging>
- <version>1.0.0.Final</version>
+ <version>1.0.1-SNAPSHOT</version>
<name>SOA::DSP</name>
<properties>
- <dsp.version>1.0.0.Final</dsp.version>
+ <dsp.version>1.0.1-SNAPSHOT</dsp.version>
<junit.version>4.8.1</junit.version>
<jaxws.version>2.1</jaxws.version>
<wsdl4j.version>1.6.2</wsdl4j.version>