You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by he...@apache.org on 2005/07/20 18:11:22 UTC

svn commit: r219934 - /webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/MustUnderstandChecker.java

Author: hemapani
Date: Wed Jul 20 09:11:21 2005
New Revision: 219934

URL: http://svn.apache.org/viewcvs?rev=219934&view=rev
Log:
oops .. forget to add the new file ..adding it 

Added:
    webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/MustUnderstandChecker.java

Added: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/MustUnderstandChecker.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/MustUnderstandChecker.java?rev=219934&view=auto
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/MustUnderstandChecker.java (added)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/engine/MustUnderstandChecker.java Wed Jul 20 09:11:21 2005
@@ -0,0 +1,29 @@
+/*
+ * Copyright 2004,2005 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ *  Runtime state of the engine
+ */
+package org.apache.axis2.engine;
+
+import org.apache.axis2.context.MessageContext;
+import org.apache.axis2.handlers.AbstractHandler;
+
+public class MustUnderstandChecker extends AbstractHandler {
+
+    public void invoke(MessageContext msgContext) throws AxisFault {
+    
+    }
+
+}