Author: ruchithf
Date: Thu Jul 5 07:39:38 2007
New Revision: 553524
URL: http://svn.apache.org/viewvc?view=rev&rev=553524
Log:
Fixed some typos
Modified:
webservices/rampart/trunk/java/modules/rampart-core/src/main/java/org/apache/rampart/handler/RampartReceiver.java
webservices/rampart/trunk/java/modules/rampart-core/src/main/java/org/apache/rampart/handler/WSDoAllHandler.java
webservices/rampart/trunk/java/modules/rampart-core/src/main/java/org/apache/rampart/handler/WSSHandlerConstants.java
Modified:
webservices/rampart/trunk/java/modules/rampart-core/src/main/java/org/apache/rampart/handler/RampartReceiver.java
URL:
http://svn.apache.org/viewvc/webservices/rampart/trunk/java/modules/rampart-core/src/main/java/org/apache/rampart/handler/RampartReceiver.java?view=diff&rev=553524&r1=553523&r2=553524
==============================================================================
---
webservices/rampart/trunk/java/modules/rampart-core/src/main/java/org/apache/rampart/handler/RampartReceiver.java
(original)
+++
webservices/rampart/trunk/java/modules/rampart-core/src/main/java/org/apache/rampart/handler/RampartReceiver.java
Thu Jul 5 07:39:38 2007
@@ -39,7 +39,7 @@
public class RampartReceiver implements Handler {
private static HandlerDescription EMPTY_HANDLER_METADATA =
- new HandlerDescription("deafult Handler");
+ new HandlerDescription("default Handler");
private HandlerDescription handlerDesc;
Modified:
webservices/rampart/trunk/java/modules/rampart-core/src/main/java/org/apache/rampart/handler/WSDoAllHandler.java
URL:
http://svn.apache.org/viewvc/webservices/rampart/trunk/java/modules/rampart-core/src/main/java/org/apache/rampart/handler/WSDoAllHandler.java?view=diff&rev=553524&r1=553523&r2=553524
==============================================================================
---
webservices/rampart/trunk/java/modules/rampart-core/src/main/java/org/apache/rampart/handler/WSDoAllHandler.java
(original)
+++
webservices/rampart/trunk/java/modules/rampart-core/src/main/java/org/apache/rampart/handler/WSDoAllHandler.java
Thu Jul 5 07:39:38 2007
@@ -33,7 +33,7 @@
* Field EMPTY_HANDLER_METADATA
*/
private static HandlerDescription EMPTY_HANDLER_METADATA =
- new HandlerDescription("deafult Handler");
+ new HandlerDescription("default Handler");
private final static String WSS_PASSWORD = "password";
@@ -155,9 +155,9 @@
protected int getCurrentRepetition(Object msgContext) {
//get the repetition from the message context
int repetition = 0;
- if (!inHandler) {//We only need to repete the out handler
+ if (!inHandler) {//We only need to repeat the out handler
Integer count = (Integer) ((MessageContext)
msgContext).getProperty(WSSHandlerConstants.CURRENT_REPETITON);
- if (count != null) { //When we are repeting the handler
+ if (count != null) { //When we are repeating the handler
repetition = count.intValue();
}
}
@@ -181,8 +181,8 @@
}
/**
- * Gets optoin. Extracts the configuration values from the service.xml
- * and/or axis2.xml. Values set in the service.xml takes prority over
+ * Gets option. Extracts the configuration values from the service.xml
+ * and/or axis2.xml. Values set in the service.xml takes priority over
* values of the axis2.xml
*/
public Object getOption(String axisKey) {
Modified:
webservices/rampart/trunk/java/modules/rampart-core/src/main/java/org/apache/rampart/handler/WSSHandlerConstants.java
URL:
http://svn.apache.org/viewvc/webservices/rampart/trunk/java/modules/rampart-core/src/main/java/org/apache/rampart/handler/WSSHandlerConstants.java?view=diff&rev=553524&r1=553523&r2=553524
==============================================================================
---
webservices/rampart/trunk/java/modules/rampart-core/src/main/java/org/apache/rampart/handler/WSSHandlerConstants.java
(original)
+++
webservices/rampart/trunk/java/modules/rampart-core/src/main/java/org/apache/rampart/handler/WSSHandlerConstants.java
Thu Jul 5 07:39:38 2007
@@ -118,7 +118,7 @@
/**
- * Key to hod the map of security context identifiers against the
+ * Key to hold the map of security context identifiers against the
* service epr addresses (service scope) or wsa:Action values (operation
* scope).
*/