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 da...@apache.org on 2005/12/14 10:34:57 UTC

svn commit: r356757 - in /webservices/axis2/trunk/c: include/axis2_svc.h modules/core/description/src/module_desc.c modules/core/description/src/svc.c

Author: damitha
Date: Wed Dec 14 01:34:40 2005
New Revision: 356757

URL: http://svn.apache.org/viewcvs?rev=356757&view=rev
Log:
name change to qname 

Modified:
    webservices/axis2/trunk/c/include/axis2_svc.h
    webservices/axis2/trunk/c/modules/core/description/src/module_desc.c
    webservices/axis2/trunk/c/modules/core/description/src/svc.c

Modified: webservices/axis2/trunk/c/include/axis2_svc.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_svc.h?rev=356757&r1=356756&r2=356757&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_svc.h (original)
+++ webservices/axis2/trunk/c/include/axis2_svc.h Wed Dec 14 01:34:40 2005
@@ -101,12 +101,12 @@
                  axis2_env_t **env);
 	
     axis2_status_t (AXIS2_CALL *
-    set_name) (axis2_svc_t *svc, 
+    set_qname) (axis2_svc_t *svc, 
                 axis2_env_t **env,
                 axis2_qname_t *qname);
     
 	axis2_qname_t *(AXIS2_CALL *
-    get_name) (const axis2_svc_t *svc, 
+    get_qname) (const axis2_svc_t *svc, 
                axis2_env_t **env);
 
 	axis2_status_t (AXIS2_CALL *
@@ -463,9 +463,9 @@
 
 #define AXIS2_SVC_GET_PARENT(svc, env) (svc->ops->get_parent (svc, env))
 
-#define AXIS2_SVC_SET_NAME(svc, env, qname) (svc->ops->set_name(svc , env, qname))
+#define AXIS2_SVC_SET_QNAME(svc, env, qname) (svc->ops->set_qname(svc , env, qname))
 
-#define AXIS2_SVC_GET_NAME(svc, env) (svc->ops->get_name(svc , env))
+#define AXIS2_SVC_GET_QNAME(svc, env) (svc->ops->get_qname(svc , env))
 		
 #define AXIS2_SVC_ADD_PARAM(svc, env, param) (svc->ops->add_param(svc , env, param))
 		

Modified: webservices/axis2/trunk/c/modules/core/description/src/module_desc.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/description/src/module_desc.c?rev=356757&r1=356756&r2=356757&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/description/src/module_desc.c (original)
+++ webservices/axis2/trunk/c/modules/core/description/src/module_desc.c Wed Dec 14 01:34:40 2005
@@ -435,7 +435,7 @@
             return AXIS2_FAILURE;
 	}	
     
-    optr_name = AXIS2_OP_GET_NAME(op, env);
+    optr_name = AXIS2_OP_GET_QNAME(op, env);
     
     if(NULL == optr_name)
     {

Modified: webservices/axis2/trunk/c/modules/core/description/src/svc.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/description/src/svc.c?rev=356757&r1=356756&r2=356757&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/description/src/svc.c (original)
+++ webservices/axis2/trunk/c/modules/core/description/src/svc.c Wed Dec 14 01:34:40 2005
@@ -51,12 +51,12 @@
 axis2_svc_get_parent (axis2_svc_t *svc, axis2_env_t **env);
 
 axis2_status_t AXIS2_CALL
-axis2_svc_set_name (axis2_svc_t *svc, 
+axis2_svc_set_qname (axis2_svc_t *svc, 
                     axis2_env_t **env,
                     axis2_qname_t *qname);
 
 axis2_qname_t * AXIS2_CALL
-axis2_svc_get_name (const axis2_svc_t *svc, 
+axis2_svc_get_qname (const axis2_svc_t *svc, 
                     axis2_env_t **env);	
 
 axis2_status_t AXIS2_CALL
@@ -682,7 +682,7 @@
 }
 
 axis2_status_t AXIS2_CALL
-axis2_svc_set_name (axis2_svc_t *svc, 
+axis2_svc_set_qname (axis2_svc_t *svc, 
                     axis2_env_t **env,
                     axis2_qname_t *qname)
 {
@@ -693,7 +693,7 @@
 }
 
 axis2_qname_t * AXIS2_CALL
-axis2_svc_get_name (const axis2_svc_t *svc, 
+axis2_svc_get_qname (const axis2_svc_t *svc, 
                     axis2_env_t **env)
 {
 	AXIS2_FUNC_PARAM_CHECK(svc, env, NULL);