You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by co...@apache.org on 2014/07/17 16:08:43 UTC

git commit: Renaming systest modules

Repository: cxf-fediz
Updated Branches:
  refs/heads/master 72eb6519b -> 3c0a524ca


Renaming systest modules


Project: http://git-wip-us.apache.org/repos/asf/cxf-fediz/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf-fediz/commit/3c0a524c
Tree: http://git-wip-us.apache.org/repos/asf/cxf-fediz/tree/3c0a524c
Diff: http://git-wip-us.apache.org/repos/asf/cxf-fediz/diff/3c0a524c

Branch: refs/heads/master
Commit: 3c0a524caea98ded7f429e590857487de41b17bb
Parents: 72eb651
Author: Colm O hEigeartaigh <co...@apache.org>
Authored: Thu Jul 17 15:08:22 2014 +0100
Committer: Colm O hEigeartaigh <co...@apache.org>
Committed: Thu Jul 17 15:08:22 2014 +0100

----------------------------------------------------------------------
 .../org/apache/cxf/fediz/core/processor/SAMLProcessorImpl.java   | 4 ++++
 .../cxf/fediz/core/samlsso/DefaultAuthnRequestBuilder.java       | 2 --
 systests/jetty8/pom.xml                                          | 2 +-
 systests/pom.xml                                                 | 2 +-
 systests/simpleWebapp/pom.xml                                    | 2 +-
 systests/spring/pom.xml                                          | 2 +-
 systests/spring2Webapp/pom.xml                                   | 2 +-
 systests/springPreauthWebapp/pom.xml                             | 2 +-
 systests/springWebapp/pom.xml                                    | 2 +-
 systests/tests/pom.xml                                           | 2 +-
 systests/tomcat7/pom.xml                                         | 2 +-
 11 files changed, 13 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/3c0a524c/plugins/core/src/main/java/org/apache/cxf/fediz/core/processor/SAMLProcessorImpl.java
----------------------------------------------------------------------
diff --git a/plugins/core/src/main/java/org/apache/cxf/fediz/core/processor/SAMLProcessorImpl.java b/plugins/core/src/main/java/org/apache/cxf/fediz/core/processor/SAMLProcessorImpl.java
index 918452a..1fa1a67 100644
--- a/plugins/core/src/main/java/org/apache/cxf/fediz/core/processor/SAMLProcessorImpl.java
+++ b/plugins/core/src/main/java/org/apache/cxf/fediz/core/processor/SAMLProcessorImpl.java
@@ -70,6 +70,10 @@ import org.slf4j.LoggerFactory;
 public class SAMLProcessorImpl implements FedizProcessor {
 
     private static final Logger LOG = LoggerFactory.getLogger(SAMLProcessorImpl.class);
+    
+    static {
+        OpenSAMLUtil.initSamlEngine();
+    }
 
     /**
      * Default constructor

http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/3c0a524c/plugins/core/src/main/java/org/apache/cxf/fediz/core/samlsso/DefaultAuthnRequestBuilder.java
----------------------------------------------------------------------
diff --git a/plugins/core/src/main/java/org/apache/cxf/fediz/core/samlsso/DefaultAuthnRequestBuilder.java b/plugins/core/src/main/java/org/apache/cxf/fediz/core/samlsso/DefaultAuthnRequestBuilder.java
index b6774d4..f7383b5 100644
--- a/plugins/core/src/main/java/org/apache/cxf/fediz/core/samlsso/DefaultAuthnRequestBuilder.java
+++ b/plugins/core/src/main/java/org/apache/cxf/fediz/core/samlsso/DefaultAuthnRequestBuilder.java
@@ -21,7 +21,6 @@ package org.apache.cxf.fediz.core.samlsso;
 
 import java.util.Collections;
 
-import org.apache.wss4j.common.saml.OpenSAMLUtil;
 import org.opensaml.common.SAMLVersion;
 import org.opensaml.saml2.core.AuthnContextClassRef;
 import org.opensaml.saml2.core.AuthnContextComparisonTypeEnumeration;
@@ -47,7 +46,6 @@ public class DefaultAuthnRequestBuilder implements AuthnRequestBuilder {
         String issuerId,
         String assertionConsumerServiceAddress
     ) throws Exception {
-        OpenSAMLUtil.initSamlEngine();
         Issuer issuer =
             SamlpRequestComponentBuilder.createIssuer(issuerId);
         

http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/3c0a524c/systests/jetty8/pom.xml
----------------------------------------------------------------------
diff --git a/systests/jetty8/pom.xml b/systests/jetty8/pom.xml
index e7101e8..8b54502 100644
--- a/systests/jetty8/pom.xml
+++ b/systests/jetty8/pom.xml
@@ -26,7 +26,7 @@
         <relativePath>../pom.xml</relativePath>
     </parent>
     <groupId>org.apache.cxf.fediz.systests</groupId>
-    <artifactId>systests-jetty8</artifactId>
+    <artifactId>fediz-systests-jetty8</artifactId>
     <name>Apache Fediz Systests Jetty 8</name>
     <packaging>jar</packaging>
     <properties>

http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/3c0a524c/systests/pom.xml
----------------------------------------------------------------------
diff --git a/systests/pom.xml b/systests/pom.xml
index 0a61449..bb97c81 100644
--- a/systests/pom.xml
+++ b/systests/pom.xml
@@ -25,7 +25,7 @@
        <version>1.2.0-SNAPSHOT</version>
    </parent>
    <groupId>org.apache.cxf.fediz</groupId>
-   <artifactId>systests</artifactId>
+   <artifactId>fediz-systests</artifactId>
    <name>Apache Fediz System tests</name>
    <packaging>pom</packaging>
 

http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/3c0a524c/systests/simpleWebapp/pom.xml
----------------------------------------------------------------------
diff --git a/systests/simpleWebapp/pom.xml b/systests/simpleWebapp/pom.xml
index 2288fd0..f1654c1 100644
--- a/systests/simpleWebapp/pom.xml
+++ b/systests/simpleWebapp/pom.xml
@@ -26,7 +26,7 @@
         <relativePath>../pom.xml</relativePath>
     </parent>
     <groupId>org.apache.cxf.fediz.systests</groupId>
-    <artifactId>systests-simpleWebapp</artifactId>
+    <artifactId>fediz-systests-simpleWebapp</artifactId>
     <name>Apache Fediz Systests SimpleWebapp</name>
     <packaging>war</packaging>
     <properties>

http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/3c0a524c/systests/spring/pom.xml
----------------------------------------------------------------------
diff --git a/systests/spring/pom.xml b/systests/spring/pom.xml
index 879adcd..aeeb16b 100644
--- a/systests/spring/pom.xml
+++ b/systests/spring/pom.xml
@@ -26,7 +26,7 @@
         <relativePath>../pom.xml</relativePath>
     </parent>
     <groupId>org.apache.cxf.fediz.systests</groupId>
-    <artifactId>systests-spring</artifactId>
+    <artifactId>fediz-systests-spring</artifactId>
     <name>Apache Fediz Systests Spring Security</name>
     <packaging>jar</packaging>
     <properties>

http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/3c0a524c/systests/spring2Webapp/pom.xml
----------------------------------------------------------------------
diff --git a/systests/spring2Webapp/pom.xml b/systests/spring2Webapp/pom.xml
index 50d3e8d..53bbe09 100644
--- a/systests/spring2Webapp/pom.xml
+++ b/systests/spring2Webapp/pom.xml
@@ -26,7 +26,7 @@
         <relativePath>../pom.xml</relativePath>
     </parent>
     <groupId>org.apache.cxf.fediz.systests</groupId>
-    <artifactId>systests-spring2Webapp</artifactId>
+    <artifactId>fediz-systests-spring2Webapp</artifactId>
     <name>Apache Fediz Systests Spring2 Webapp</name>
     <packaging>war</packaging>
 

http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/3c0a524c/systests/springPreauthWebapp/pom.xml
----------------------------------------------------------------------
diff --git a/systests/springPreauthWebapp/pom.xml b/systests/springPreauthWebapp/pom.xml
index 85feaf8..7cf7f6c 100644
--- a/systests/springPreauthWebapp/pom.xml
+++ b/systests/springPreauthWebapp/pom.xml
@@ -27,7 +27,7 @@
         <relativePath>../pom.xml</relativePath>
     </parent>
     <groupId>org.apache.cxf.fediz.systests</groupId>
-    <artifactId>systests-springPreauthWebapp</artifactId>
+    <artifactId>fediz-systests-springPreauthWebapp</artifactId>
     <name>Apache Fediz Systests SpringWebapp (Pre-Authentication)</name>
     <packaging>war</packaging>
 

http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/3c0a524c/systests/springWebapp/pom.xml
----------------------------------------------------------------------
diff --git a/systests/springWebapp/pom.xml b/systests/springWebapp/pom.xml
index 2fb05c5..b718a00 100644
--- a/systests/springWebapp/pom.xml
+++ b/systests/springWebapp/pom.xml
@@ -26,7 +26,7 @@
         <relativePath>../pom.xml</relativePath>
     </parent>
     <groupId>org.apache.cxf.fediz.systests</groupId>
-    <artifactId>systests-springWebapp</artifactId>
+    <artifactId>fediz-systests-springWebapp</artifactId>
     <name>Apache Fediz Systests SpringWebapp</name>
     <packaging>war</packaging>
 

http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/3c0a524c/systests/tests/pom.xml
----------------------------------------------------------------------
diff --git a/systests/tests/pom.xml b/systests/tests/pom.xml
index ec5bd24..ccb47ae 100644
--- a/systests/tests/pom.xml
+++ b/systests/tests/pom.xml
@@ -26,7 +26,7 @@
         <relativePath>../pom.xml</relativePath>
     </parent>
     <groupId>org.apache.cxf.fediz.systests</groupId>
-    <artifactId>systests-tests</artifactId>
+    <artifactId>fediz-systests-tests</artifactId>
     <name>Apache Fediz Systests Tests</name>
     <packaging>jar</packaging>
     <properties>

http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/3c0a524c/systests/tomcat7/pom.xml
----------------------------------------------------------------------
diff --git a/systests/tomcat7/pom.xml b/systests/tomcat7/pom.xml
index 69e869e..435ff52 100644
--- a/systests/tomcat7/pom.xml
+++ b/systests/tomcat7/pom.xml
@@ -26,7 +26,7 @@
         <relativePath>../pom.xml</relativePath>
     </parent>
     <groupId>org.apache.cxf.fediz.systests</groupId>
-    <artifactId>systests-tomcat7</artifactId>
+    <artifactId>fediz-systests-tomcat7</artifactId>
     <name>Apache Fediz Systests Tomcat 7</name>
     <packaging>jar</packaging>
     <properties>