Author: sergeyb
Date: Thu Apr 8 17:02:02 2010
New Revision: 932010
URL: http://svn.apache.org/viewvc?rev=932010&view=rev
Log:
Merged revisions 931629 via svnmerge from
https://svn.apache.org/repos/asf/cxf/trunk
........
r931629 | sergeyb | 2010-04-07 18:54:32 +0100 (Wed, 07 Apr 2010) | 1 line
CXF-2754: adding a constructor accepting Map properties to
AbstractWSS4JSecurityContextProvidingInterceptor
........
Modified:
cxf/branches/2.2.x-fixes/ (props changed)
cxf/branches/2.2.x-fixes/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/AbstractWSS4JSecurityContextProvidingInterceptor.java
Propchange: cxf/branches/2.2.x-fixes/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Thu Apr 8 17:02:02 2010
@@ -1 +1 @@
-/cxf/trunk:931228,931644,931758,931765
+/cxf/trunk:931228,931629,931644,931758,931765
Propchange: cxf/branches/2.2.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.
Modified:
cxf/branches/2.2.x-fixes/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/AbstractWSS4JSecurityContextProvidingInterceptor.java
URL:
http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/AbstractWSS4JSecurityContextProvidingInterceptor.java?rev=932010&r1=932009&r2=932010&view=diff
==============================================================================
---
cxf/branches/2.2.x-fixes/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/AbstractWSS4JSecurityContextProvidingInterceptor.java
(original)
+++
cxf/branches/2.2.x-fixes/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/AbstractWSS4JSecurityContextProvidingInterceptor.java
Thu Apr 8 17:02:02 2010
@@ -80,6 +80,14 @@ public abstract class AbstractWSS4JSecur
private ThreadLocal<Message> messages = new ThreadLocal<Message>();
private boolean supportDigestPasswords;
+ public AbstractWSS4JSecurityContextProvidingInterceptor() {
+ super();
+ }
+
+ public AbstractWSS4JSecurityContextProvidingInterceptor(Map<String,
Object> properties) {
+ super(properties);
+ }
+
public void setSupportDigestPasswords(boolean support) {
supportDigestPasswords = support;
}