You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ka...@apache.org on 2008/03/29 15:43:37 UTC

svn commit: r642540 - /webservices/axis2/trunk/c/axiom/include/axiom_soap_fault.h

Author: kaushalye
Date: Sat Mar 29 07:43:33 2008
New Revision: 642540

URL: http://svn.apache.org/viewvc?rev=642540&view=rev
Log:
Hackathon : OM SOAP fault header

Modified:
    webservices/axis2/trunk/c/axiom/include/axiom_soap_fault.h

Modified: webservices/axis2/trunk/c/axiom/include/axiom_soap_fault.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axiom_soap_fault.h?rev=642540&r1=642539&r2=642540&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axiom_soap_fault.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axiom_soap_fault.h Sat Mar 29 07:43:33 2008
@@ -62,7 +62,6 @@
      *  otherwise return NULL with error code set in environments error
      */
     AXIS2_EXTERN axiom_soap_fault_t *AXIS2_CALL
-
     axiom_soap_fault_create_with_parent(
         const axutil_env_t * env,
         struct axiom_soap_body *parent);
@@ -77,14 +76,22 @@
      * otherwise return NULL
      */
     AXIS2_EXTERN axiom_soap_fault_t *AXIS2_CALL
-
     axiom_soap_fault_create_with_exception(
         const axutil_env_t * env,
         struct axiom_soap_body *parent,
         axis2_char_t * exception);
 
+    /**
+     *
+     * @param env environment must not be NULL
+     * @param parent soap body struct must not be NULL
+     * @param code_value 
+     * @param reason_text
+     * @param soap_version
+     *
+     * @return the created default OM SOAP fault
+     */
     AXIS2_EXTERN axiom_soap_fault_t *AXIS2_CALL
-
     axiom_soap_fault_create_default_fault(
         const axutil_env_t * env,
         struct axiom_soap_body *parent,
@@ -115,10 +122,9 @@
       *  with this soap_fault struct , NULL is returned otherwise
       */
     AXIS2_EXTERN struct axiom_soap_fault_code *AXIS2_CALL
-
-                axiom_soap_fault_get_code(
-                    axiom_soap_fault_t * fault,
-                    const axutil_env_t * env);
+    axiom_soap_fault_get_code(
+         axiom_soap_fault_t * fault,
+         const axutil_env_t * env);
 
     /**
      * @param fault soap fault struct
@@ -128,10 +134,9 @@
      */
 
     AXIS2_EXTERN struct axiom_soap_fault_reason *AXIS2_CALL
-
-                axiom_soap_fault_get_reason(
-                    axiom_soap_fault_t * fault,
-                    const axutil_env_t * env);
+    axiom_soap_fault_get_reason(
+         axiom_soap_fault_t * fault,
+         const axutil_env_t * env);
 
     /**
      * @param fault soap fault struct
@@ -140,10 +145,9 @@
      *  with this soap_fault struct , NULL is returned otherwise
      */
     AXIS2_EXTERN struct axiom_soap_fault_node *AXIS2_CALL
-
-                axiom_soap_fault_get_node(
-                    axiom_soap_fault_t * fault,
-                    const axutil_env_t * env);
+    axiom_soap_fault_get_node(
+        axiom_soap_fault_t * fault,
+        const axutil_env_t * env);
 
     /**
      * @param fault soap fault struct
@@ -152,10 +156,9 @@
      * with this soap_fault struct , NULL is returned otherwise
      */
     AXIS2_EXTERN struct axiom_soap_fault_role *AXIS2_CALL
-
-                axiom_soap_fault_get_role(
-                    axiom_soap_fault_t * fault,
-                    const axutil_env_t * env);
+    axiom_soap_fault_get_role(
+         axiom_soap_fault_t * fault,
+         const axutil_env_t * env);
 
     /**
       * @param fault soap fault struct
@@ -163,12 +166,10 @@
       * @returns a pointer to  soap_fault_code struct if one is 
       * associated with this soap_fault struct , NULL is returned otherwise
       */
-
     AXIS2_EXTERN struct axiom_soap_fault_detail *AXIS2_CALL
-
-                axiom_soap_fault_get_detail(
-                    axiom_soap_fault_t * fault,
-                    const axutil_env_t * env);
+    axiom_soap_fault_get_detail(
+         axiom_soap_fault_t * fault,
+         const axutil_env_t * env);
 
     /**
       * @param fault soap fault struct 



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org