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 ch...@apache.org on 2005/05/09 13:29:50 UTC

svn commit: r169289 - /webservices/axis/trunk/java/modules/core/src/org/apache/axis/description/AxisMessage.java

Author: chathura
Date: Mon May  9 04:29:49 2005
New Revision: 169289

URL: http://svn.apache.org/viewcvs?rev=169289&view=rev
Log:
Adding AxisMessage to be consistent With the rest of the Contexts

Added:
    webservices/axis/trunk/java/modules/core/src/org/apache/axis/description/AxisMessage.java

Added: webservices/axis/trunk/java/modules/core/src/org/apache/axis/description/AxisMessage.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis/description/AxisMessage.java?rev=169289&view=auto
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis/description/AxisMessage.java (added)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis/description/AxisMessage.java Mon May  9 04:29:49 2005
@@ -0,0 +1,29 @@
+/*
+ * Copyright 2001-2004 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.
+ */
+
+package org.apache.axis.description;
+
+import org.apache.wsdl.MessageReference;
+import org.apache.wsdl.impl.MessageReferenceImpl;
+
+/**
+ * @author chathura@opensource.lk
+ *
+ */
+public class AxisMessage extends MessageReferenceImpl implements
+		MessageReference {
+
+}