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

svn commit: r1556554 - in /webservices/wss4j/branches/1_6_x-fixes/src/main/java/org/apache/ws/security: WSSecurityException.java components/crypto/CredentialException.java conversation/ConversationException.java

Author: coheigea
Date: Wed Jan  8 14:43:33 2014
New Revision: 1556554

URL: http://svn.apache.org/r1556554
Log:
More minor stuff

Modified:
    webservices/wss4j/branches/1_6_x-fixes/src/main/java/org/apache/ws/security/WSSecurityException.java
    webservices/wss4j/branches/1_6_x-fixes/src/main/java/org/apache/ws/security/components/crypto/CredentialException.java
    webservices/wss4j/branches/1_6_x-fixes/src/main/java/org/apache/ws/security/conversation/ConversationException.java

Modified: webservices/wss4j/branches/1_6_x-fixes/src/main/java/org/apache/ws/security/WSSecurityException.java
URL: http://svn.apache.org/viewvc/webservices/wss4j/branches/1_6_x-fixes/src/main/java/org/apache/ws/security/WSSecurityException.java?rev=1556554&r1=1556553&r2=1556554&view=diff
==============================================================================
--- webservices/wss4j/branches/1_6_x-fixes/src/main/java/org/apache/ws/security/WSSecurityException.java (original)
+++ webservices/wss4j/branches/1_6_x-fixes/src/main/java/org/apache/ws/security/WSSecurityException.java Wed Jan  8 14:43:33 2014
@@ -46,7 +46,7 @@ public class WSSecurityException extends
     public static final int MESSAGE_EXPIRED = 8;
     public static final int FAILED_ENCRYPTION = 9;
     public static final int FAILED_SIGNATURE = 10;
-    private static ResourceBundle resources;
+    private static final ResourceBundle resources;
     /*
      * This is an Integer -> QName map. Its function is to map the integer error codes
      * given above to the QName fault codes as defined in the SOAP Message Security 1.1

Modified: webservices/wss4j/branches/1_6_x-fixes/src/main/java/org/apache/ws/security/components/crypto/CredentialException.java
URL: http://svn.apache.org/viewvc/webservices/wss4j/branches/1_6_x-fixes/src/main/java/org/apache/ws/security/components/crypto/CredentialException.java?rev=1556554&r1=1556553&r2=1556554&view=diff
==============================================================================
--- webservices/wss4j/branches/1_6_x-fixes/src/main/java/org/apache/ws/security/components/crypto/CredentialException.java (original)
+++ webservices/wss4j/branches/1_6_x-fixes/src/main/java/org/apache/ws/security/components/crypto/CredentialException.java Wed Jan  8 14:43:33 2014
@@ -39,7 +39,7 @@ public class CredentialException extends
     public static final int DEFECTIVE = 2;
     public static final int IO_ERROR = 3;
     public static final int SEC_ERROR = 4;
-    private static ResourceBundle resources;
+    private static final ResourceBundle resources;
     private int errorCode;
 
     static {

Modified: webservices/wss4j/branches/1_6_x-fixes/src/main/java/org/apache/ws/security/conversation/ConversationException.java
URL: http://svn.apache.org/viewvc/webservices/wss4j/branches/1_6_x-fixes/src/main/java/org/apache/ws/security/conversation/ConversationException.java?rev=1556554&r1=1556553&r2=1556554&view=diff
==============================================================================
--- webservices/wss4j/branches/1_6_x-fixes/src/main/java/org/apache/ws/security/conversation/ConversationException.java (original)
+++ webservices/wss4j/branches/1_6_x-fixes/src/main/java/org/apache/ws/security/conversation/ConversationException.java Wed Jan  8 14:43:33 2014
@@ -33,7 +33,7 @@ public class ConversationException exten
     public static final String RENEW_NEEDED = "RenewNeeded";
     public static final String UNABLE_TO_REVIEW = "UnableToRenew";
     
-    private static ResourceBundle resources;
+    private static final ResourceBundle resources;
 
     private String faultCode;
     private String faultString;