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 sa...@apache.org on 2007/09/28 12:29:43 UTC

svn commit: r580289 [5/20] - in /webservices/axis2/trunk/c: guththila/include/ guththila/samples/ guththila/src/ guththila/tests/ neethi/include/ neethi/src/ neethi/src/secpolicy/builder/ neethi/src/secpolicy/model/ neethi/test/ samples/client/echo/ sa...

Modified: webservices/axis2/trunk/c/guththila/tests/test.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/guththila/tests/test.c?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/guththila/tests/test.c (original)
+++ webservices/axis2/trunk/c/guththila/tests/test.c Fri Sep 28 03:29:16 2007
@@ -3,194 +3,196 @@
 #include "guththila_defines.h"
 #include "test.h"
 
-
 void
-setup (void)
+setup(
+    void)
 {
-allocator = axutil_allocator_init(NULL);
-env = axutil_env_create(allocator);
+    allocator = axutil_allocator_init(NULL);
+    env = axutil_env_create(allocator);
 }
 
 void
-teardown (void)
+teardown(
+    void)
 {
- guththila_reader_free(env, red);
- guththila_free(env, parser);
- axutil_env_free(env);
+    guththila_reader_free(env, red);
+    guththila_free(env, parser);
+    axutil_env_free(env);
 }
 
-START_TEST (test_guththila)
+START_TEST(test_guththila)
 {
-	red = guththila_reader_create_for_file(env, "resources/om/axis.xml");
+    red = guththila_reader_create_for_file(env, "resources/om/axis.xml");
     parser = guththila_create(env, red);
-	fail_if (red == NULL, "guththila reader failed");
-	fail_if (parser == NULL, "guththila parser failed");
+    fail_if(red == NULL, "guththila reader failed");
+    fail_if(parser == NULL, "guththila parser failed");
 }
-END_TEST
 
-START_TEST (test_guththila_start_element)
+END_TEST
+START_TEST(
+    test_guththila_start_element)
 {
-	int c = 0;
-	char *p;
-	red = guththila_reader_create_for_file(env, "resources/om/axis.xml");
+    int c = 0;
+    char *p;
+    red = guththila_reader_create_for_file(env, "resources/om/axis.xml");
     parser = guththila_create(env, red);
-	guththila_read (env, parser);
-	c = guththila_next (env, parser);
+    guththila_read(env, parser);
+    c = guththila_next(env, parser);
 
     while ((c != GUTHTHILA_START_ELEMENT))
-		c = guththila_next (env, parser);
-	p = guththila_get_name(env, parser);
-	fail_unless ((c == GUTHTHILA_START_ELEMENT), "no start element found");
-	fail_if ((p == NULL), "no name found");
-	fail_unless (!strcmp (p, "root"), "root element differed");
-	c = 0;
+        c = guththila_next(env, parser);
+    p = guththila_get_name(env, parser);
+    fail_unless((c == GUTHTHILA_START_ELEMENT), "no start element found");
+    fail_if((p == NULL), "no name found");
+    fail_unless(!strcmp(p, "root"), "root element differed");
+    c = 0;
 
     while ((c != GUTHTHILA_START_ELEMENT))
-		c = guththila_next (env, parser);
-	p = guththila_get_name(env, parser);
-	fail_unless ((c == GUTHTHILA_START_ELEMENT), "no start element found");
-	fail_if ((p == NULL), "no name found");
-	fail_unless (!strcmp (p, "a"), "a element differed");
+        c = guththila_next(env, parser);
+    p = guththila_get_name(env, parser);
+    fail_unless((c == GUTHTHILA_START_ELEMENT), "no start element found");
+    fail_if((p == NULL), "no name found");
+    fail_unless(!strcmp(p, "a"), "a element differed");
 
-	c = 0;
+    c = 0;
     while ((c != GUTHTHILA_START_ELEMENT))
-		c = guththila_next (env, parser);
-	p = guththila_get_name(env, parser);
-	fail_unless (!strcmp (p, "b"), "b element differed");
+        c = guththila_next(env, parser);
+    p = guththila_get_name(env, parser);
+    fail_unless(!strcmp(p, "b"), "b element differed");
 }
-END_TEST
 
-START_TEST (test_guththila_empty_element)
+END_TEST
+START_TEST(
+    test_guththila_empty_element)
 {
-	int c = 0;
-	char *p;
-	red = guththila_reader_create_for_file(env, "resources/om/axis.xml");
+    int c = 0;
+    char *p;
+    red = guththila_reader_create_for_file(env, "resources/om/axis.xml");
     parser = guththila_create(env, red);
-	guththila_read (env, parser);
-	c = guththila_next (env, parser);
+    guththila_read(env, parser);
+    c = guththila_next(env, parser);
 
     while ((c != GUTHTHILA_EMPTY_ELEMENT))
-		c = guththila_next (env, parser);
-	p = guththila_get_name(env, parser);
-	fail_unless ((c == GUTHTHILA_EMPTY_ELEMENT), "no empty element found");
-	fail_if ((p == NULL), "no name found");
-	fail_unless (!strcmp (p, "a.1"), "a.1 element differed");
+        c = guththila_next(env, parser);
+    p = guththila_get_name(env, parser);
+    fail_unless((c == GUTHTHILA_EMPTY_ELEMENT), "no empty element found");
+    fail_if((p == NULL), "no name found");
+    fail_unless(!strcmp(p, "a.1"), "a.1 element differed");
 
-	c = 0;
+    c = 0;
 
     while ((c != GUTHTHILA_EMPTY_ELEMENT))
-		c = guththila_next (env, parser);
-	p = guththila_get_name(env, parser);
-	fail_unless ((c == GUTHTHILA_EMPTY_ELEMENT), "no empty element found");
-	fail_if ((p == NULL), "no name found");
-	fail_unless (!strcmp (p, "a.2"), "a.2 element differed");
+        c = guththila_next(env, parser);
+    p = guththila_get_name(env, parser);
+    fail_unless((c == GUTHTHILA_EMPTY_ELEMENT), "no empty element found");
+    fail_if((p == NULL), "no name found");
+    fail_unless(!strcmp(p, "a.2"), "a.2 element differed");
 
-	c = 0;
+    c = 0;
     while ((c != GUTHTHILA_START_ELEMENT))
-		c = guththila_next (env, parser);
+        c = guththila_next(env, parser);
 
-	c = 0;
+    c = 0;
     while ((c != GUTHTHILA_EMPTY_ELEMENT))
-		c = guththila_next (env, parser);
-	p = guththila_get_name(env, parser);
-	fail_unless ((c == GUTHTHILA_EMPTY_ELEMENT), "no empty element found");
-	fail_if ((p == NULL), "no name found");
-	fail_unless (!strcmp (p, "b.1"), "b.1 element differed");
+        c = guththila_next(env, parser);
+    p = guththila_get_name(env, parser);
+    fail_unless((c == GUTHTHILA_EMPTY_ELEMENT), "no empty element found");
+    fail_if((p == NULL), "no name found");
+    fail_unless(!strcmp(p, "b.1"), "b.1 element differed");
 }
-END_TEST
 
-START_TEST (test_guththila_end_element)
+END_TEST
+START_TEST(
+    test_guththila_end_element)
 {
-	int c = 0;
-	char *p;
-	red = guththila_reader_create_for_file(env, "resources/om/axis.xml");
+    int c = 0;
+    char *p;
+    red = guththila_reader_create_for_file(env, "resources/om/axis.xml");
     parser = guththila_create(env, red);
-	guththila_read (env, parser);
-	c = guththila_next (env, parser);
+    guththila_read(env, parser);
+    c = guththila_next(env, parser);
 
     while ((c != GUTHTHILA_END_ELEMENT))
-		c = guththila_next (env, parser);
-	p = guththila_get_name(env, parser);
-	fail_unless ((c == GUTHTHILA_END_ELEMENT), "no end element found");
-	fail_if ((p == NULL), "no name found");
-	fail_unless (!strcmp (p, "a"), "a element differed");
+        c = guththila_next(env, parser);
+    p = guththila_get_name(env, parser);
+    fail_unless((c == GUTHTHILA_END_ELEMENT), "no end element found");
+    fail_if((p == NULL), "no name found");
+    fail_unless(!strcmp(p, "a"), "a element differed");
 
-	c = 0;
+    c = 0;
     while ((c != GUTHTHILA_END_ELEMENT))
-		c = guththila_next (env, parser);
-	p = guththila_get_name(env, parser);
-	fail_unless ((c == GUTHTHILA_END_ELEMENT), "no endelement found");
-	fail_if ((p == NULL), "no name found");
-	fail_unless (!strcmp (p, "b"), "b element differed");
+        c = guththila_next(env, parser);
+    p = guththila_get_name(env, parser);
+    fail_unless((c == GUTHTHILA_END_ELEMENT), "no endelement found");
+    fail_if((p == NULL), "no name found");
+    fail_unless(!strcmp(p, "b"), "b element differed");
 
-	c = 0;
+    c = 0;
     while ((c != GUTHTHILA_END_ELEMENT))
-		c = guththila_next (env, parser);
-	p = guththila_get_name(env, parser);
-	fail_unless ((c == GUTHTHILA_END_ELEMENT), "no empty element found");
-	fail_if ((p == NULL), "no name found");
-	fail_unless (!strcmp (p, "root"), "root element differed");
+        c = guththila_next(env, parser);
+    p = guththila_get_name(env, parser);
+    fail_unless((c == GUTHTHILA_END_ELEMENT), "no empty element found");
+    fail_if((p == NULL), "no name found");
+    fail_unless(!strcmp(p, "root"), "root element differed");
 }
-END_TEST
 
-START_TEST (test_guththila_character)
+END_TEST
+START_TEST(
+    test_guththila_character)
 {
-	int c = 0;
-	int i = 0;
-	char *p;
-	red = guththila_reader_create_for_file(env, "resources/om/numbers.xml");
+    int c = 0;
+    int i = 0;
+    char *p;
+    red = guththila_reader_create_for_file(env, "resources/om/numbers.xml");
     parser = guththila_create(env, red);
-	guththila_read (env, parser);
-	c = guththila_next (env, parser);
+    guththila_read(env, parser);
+    c = guththila_next(env, parser);
     while (i < 3)
-	{
-		if (c == GUTHTHILA_START_ELEMENT)
-			i++;
-		c = guththila_next (env, parser);
-	}
-
-	if (c == GUTHTHILA_CHARACTER)
-		p = guththila_get_value(env, parser);
-	fail_unless (!strcmp (p, "3"), "3 not found");
-
-	c = 0;
-	while ((c != GUTHTHILA_CHARACTER) || (parser->is_whitespace))
-		c = guththila_next (env, parser);
-	p = guththila_get_value(env, parser);
-	fail_unless (!strcmp (p, "24"), "24 not found");
-
-}
-END_TEST
-
-Suite *
-guththila_suite (void)
-{
-  Suite *s = suite_create ("Guththila");
-
-  /* Core test case */
-  TCase *tc_core = tcase_create ("Core");
-  tcase_add_checked_fixture (tc_core, setup, teardown);
-  tcase_add_test (tc_core, test_guththila);
-  tcase_add_test (tc_core, test_guththila_start_element);
-  tcase_add_test (tc_core, test_guththila_empty_element);
-  tcase_add_test (tc_core, test_guththila_end_element);
-  tcase_add_test (tc_core, test_guththila_character);
-  suite_add_tcase (s, tc_core);
-  return s;
+    {
+        if (c == GUTHTHILA_START_ELEMENT)
+            i++;
+        c = guththila_next(env, parser);
+    }
+
+    if (c == GUTHTHILA_CHARACTER)
+        p = guththila_get_value(env, parser);
+    fail_unless(!strcmp(p, "3"), "3 not found");
+
+    c = 0;
+    while ((c != GUTHTHILA_CHARACTER) || (parser->is_whitespace))
+        c = guththila_next(env, parser);
+    p = guththila_get_value(env, parser);
+    fail_unless(!strcmp(p, "24"), "24 not found");
+
+}
+END_TEST Suite * guththila_suite(void)
+{
+    Suite *s = suite_create("Guththila");
+
+    /* Core test case */
+    TCase *tc_core = tcase_create("Core");
+    tcase_add_checked_fixture(tc_core, setup, teardown);
+    tcase_add_test(tc_core, test_guththila);
+    tcase_add_test(tc_core, test_guththila_start_element);
+    tcase_add_test(tc_core, test_guththila_empty_element);
+    tcase_add_test(tc_core, test_guththila_end_element);
+    tcase_add_test(tc_core, test_guththila_character);
+    suite_add_tcase(s, tc_core);
+    return s;
 }
 
-
 int
-main (void)
+main(
+    void)
 {
-  int number_failed;
-  Suite *s = guththila_suite ();
-  Suite *att = guththila_attribute_suite ();
-  SRunner *sr = srunner_create (s);
-  srunner_add_suite (sr, att);
-  srunner_set_log (sr, "guththila.log");
-  srunner_run_all (sr, CK_NORMAL);
-  number_failed = srunner_ntests_failed (sr);
-  srunner_free (sr);
-  return (number_failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
+    int number_failed;
+    Suite *s = guththila_suite();
+    Suite *att = guththila_attribute_suite();
+    SRunner *sr = srunner_create(s);
+    srunner_add_suite(sr, att);
+    srunner_set_log(sr, "guththila.log");
+    srunner_run_all(sr, CK_NORMAL);
+    number_failed = srunner_ntests_failed(sr);
+    srunner_free(sr);
+    return (number_failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
 }

Modified: webservices/axis2/trunk/c/guththila/tests/test.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/guththila/tests/test.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/guththila/tests/test.h (original)
+++ webservices/axis2/trunk/c/guththila/tests/test.h Fri Sep 28 03:29:16 2007
@@ -9,16 +9,15 @@
 axutil_env_t *env;
 guththila_t *parser;
 
-void
-setup (void);
-void
-teardown (void);
+void setup(
+    void);
+void teardown(
+    void);
 
-Suite *
-guththila_suite (void);
+Suite *guththila_suite(
+    void);
 
-Suite *
-guththila_attribute_suite (void);
+Suite *guththila_attribute_suite(
+    void);
 
-
-#endif 
+#endif

Modified: webservices/axis2/trunk/c/guththila/tests/test_attribute.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/guththila/tests/test_attribute.c?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/guththila/tests/test_attribute.c (original)
+++ webservices/axis2/trunk/c/guththila/tests/test_attribute.c Fri Sep 28 03:29:16 2007
@@ -2,82 +2,85 @@
 #include <check.h>
 #include "test.h"
 
-START_TEST (test_attribute)
+START_TEST(test_attribute)
 {
-	int count = 0;;
-	int c = 0;
-	guththila_attribute_t *att;
-	red = guththila_reader_create_for_file(env, "resources/om/evaluate.xml");
+    int count = 0;;
+    int c = 0;
+    guththila_attribute_t *att;
+    red = guththila_reader_create_for_file(env, "resources/om/evaluate.xml");
     parser = guththila_create(env, red);
-	guththila_read (env, parser);
-	c = guththila_next (env, parser);
+    guththila_read(env, parser);
+    c = guththila_next(env, parser);
     while (!count)
-	{
-		c = guththila_next (env, parser);
-		count = guththila_get_attribute_count(env, parser);
-		if (count)
-			att = guththila_get_attribute (env, parser);
-	}
-	fail_if (count == 0, "guththila attribute count failed");
-	fail_unless (!strcmp (guththila_get_attribute_name (env, parser, att), "color"),
-				 "guththila attribute name failed");
-	fail_unless (!strcmp (guththila_get_attribute_value (env, parser, att), "brown"),
-				 "guththila attribute value failed");
+    {
+        c = guththila_next(env, parser);
+        count = guththila_get_attribute_count(env, parser);
+        if (count)
+            att = guththila_get_attribute(env, parser);
+    }
+    fail_if(count == 0, "guththila attribute count failed");
+    fail_unless(!strcmp
+                (guththila_get_attribute_name(env, parser, att), "color"),
+                "guththila attribute name failed");
+    fail_unless(!strcmp
+                (guththila_get_attribute_value(env, parser, att), "brown"),
+                "guththila attribute value failed");
 }
-END_TEST
-
 
-START_TEST (test_attribute_prefix)
+END_TEST
+START_TEST(
+    test_attribute_prefix)
 {
-	int count = 0;;
-	int c = 0;
-	guththila_attribute_t *att;
-	red = guththila_reader_create_for_file(env, "resources/soap/soapmessage.xml");
+    int count = 0;;
+    int c = 0;
+    guththila_attribute_t *att;
+    red =
+        guththila_reader_create_for_file(env, "resources/soap/soapmessage.xml");
     parser = guththila_create(env, red);
-	guththila_read (env, parser);
-	c = guththila_next (env, parser);
+    guththila_read(env, parser);
+    c = guththila_next(env, parser);
     while (!count)
-	{
-		c = guththila_next (env, parser);
-		count = guththila_get_attribute_count(env, parser);
-		if (count)
-			att = guththila_get_attribute (env, parser);
-	}
-	fail_if (count == 0, "guththila attribute count failed");
-	fail_unless (!strcmp (guththila_get_attribute_prefix (env, parser, att), "soapenv"),
-				 "guththila attribute count failed");
-	fail_unless (!strcmp (guththila_get_attribute_name (env, parser, att), "mustUnderstand"),
-				 "guththila attribute count failed");
-	fail_unless (!strcmp (guththila_get_attribute_value (env, parser, att), "0"),
-				 "guththila attribute count failed");
-	count = 0;
+    {
+        c = guththila_next(env, parser);
+        count = guththila_get_attribute_count(env, parser);
+        if (count)
+            att = guththila_get_attribute(env, parser);
+    }
+    fail_if(count == 0, "guththila attribute count failed");
+    fail_unless(!strcmp
+                (guththila_get_attribute_prefix(env, parser, att), "soapenv"),
+                "guththila attribute count failed");
+    fail_unless(!strcmp
+                (guththila_get_attribute_name(env, parser, att),
+                 "mustUnderstand"), "guththila attribute count failed");
+    fail_unless(!strcmp(guththila_get_attribute_value(env, parser, att), "0"),
+                "guththila attribute count failed");
+    count = 0;
     while (!count)
-	{
-		c = guththila_next (env, parser);
-		count = guththila_get_attribute_count(env, parser);
-		if (count)
-			att = guththila_get_attribute (env, parser);
-	}
-	fail_unless (!strcmp (guththila_get_attribute_prefix (env, parser, att), "soapenv"),
-				 "guththila attribute count failed");
-	fail_unless (!strcmp (guththila_get_attribute_name (env, parser, att), "mustUnderstand"),
-				 "guththila attribute count failed");
-	fail_if (!strcmp (guththila_get_attribute_value (env, parser, att), "1"),
-				 "guththila attribute count failed");
+    {
+        c = guththila_next(env, parser);
+        count = guththila_get_attribute_count(env, parser);
+        if (count)
+            att = guththila_get_attribute(env, parser);
+    }
+    fail_unless(!strcmp
+                (guththila_get_attribute_prefix(env, parser, att), "soapenv"),
+                "guththila attribute count failed");
+    fail_unless(!strcmp
+                (guththila_get_attribute_name(env, parser, att),
+                 "mustUnderstand"), "guththila attribute count failed");
+    fail_if(!strcmp(guththila_get_attribute_value(env, parser, att), "1"),
+            "guththila attribute count failed");
 }
-END_TEST
-
-
-Suite *
-guththila_attribute_suite (void)
+END_TEST Suite * guththila_attribute_suite(void)
 {
-  Suite *s = suite_create ("Guththila_attribute");
+    Suite *s = suite_create("Guththila_attribute");
 
-  /* Core test case */
-  TCase *tc_core = tcase_create ("attribute");
-  tcase_add_checked_fixture (tc_core, setup, teardown);
-  tcase_add_test (tc_core, test_attribute);
-  tcase_add_test (tc_core, test_attribute_prefix);
-  suite_add_tcase (s, tc_core);
-  return s;
+    /* Core test case */
+    TCase *tc_core = tcase_create("attribute");
+    tcase_add_checked_fixture(tc_core, setup, teardown);
+    tcase_add_test(tc_core, test_attribute);
+    tcase_add_test(tc_core, test_attribute_prefix);
+    suite_add_tcase(s, tc_core);
+    return s;
 }

Modified: webservices/axis2/trunk/c/neethi/include/neethi_all.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/neethi_all.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/neethi_all.h (original)
+++ webservices/axis2/trunk/c/neethi/include/neethi_all.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -18,10 +19,9 @@
 #ifndef NEETHI_ALL_H
 #define NEETHI_ALL_H
 
-
 /**
   * @file neethi_all.h
-  * @struct for operator all 
+  * @struct for operator all
   */
 
 #include <axis2_defines.h>
@@ -34,42 +34,45 @@
 {
 #endif
 
-        typedef struct neethi_all_t neethi_all_t; 
-
-        AXIS2_EXTERN neethi_all_t *AXIS2_CALL
-        neethi_all_create(const axutil_env_t *env);
-
-        AXIS2_EXTERN void AXIS2_CALL
-        neethi_all_free(neethi_all_t *neethi_all,
-                const axutil_env_t *env);
-                
-        AXIS2_EXTERN axutil_array_list_t *AXIS2_CALL
-        neethi_all_get_policy_components(
-            neethi_all_t *neethi_all,
-            const axutil_env_t *env);
-        
-        AXIS2_EXTERN axis2_status_t AXIS2_CALL
-        neethi_all_add_policy_components(
-            neethi_all_t *all,
-            axutil_array_list_t *arraylist,
-            const axutil_env_t *env);
-            
-        AXIS2_EXTERN axis2_status_t AXIS2_CALL
-        neethi_all_add_operator(neethi_all_t *neethi_all,
-            const axutil_env_t *env,
-            neethi_operator_t *op);
-
-        AXIS2_EXTERN axis2_bool_t AXIS2_CALL
-        neethi_all_is_empty(neethi_all_t *all,
-            const axutil_env_t *env);
-
-        AXIS2_EXTERN axis2_status_t AXIS2_CALL
-        neethi_all_serialize(
-            neethi_all_t *neethi_all,
-            axiom_node_t *parent,
-            const axutil_env_t *env);
- 
+    typedef struct neethi_all_t neethi_all_t;
 
+    AXIS2_EXTERN neethi_all_t *AXIS2_CALL
+    neethi_all_create(
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN void AXIS2_CALL
+    neethi_all_free(
+        neethi_all_t * neethi_all,
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN axutil_array_list_t *AXIS2_CALL
+
+    neethi_all_get_policy_components(
+        neethi_all_t * neethi_all,
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN axis2_status_t AXIS2_CALL
+    neethi_all_add_policy_components(
+        neethi_all_t * all,
+        axutil_array_list_t * arraylist,
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN axis2_status_t AXIS2_CALL
+    neethi_all_add_operator(
+        neethi_all_t * neethi_all,
+        const axutil_env_t * env,
+        neethi_operator_t * op);
+
+    AXIS2_EXTERN axis2_bool_t AXIS2_CALL
+    neethi_all_is_empty(
+        neethi_all_t * all,
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN axis2_status_t AXIS2_CALL
+    neethi_all_serialize(
+        neethi_all_t * neethi_all,
+        axiom_node_t * parent,
+        const axutil_env_t * env);
 
     /** @} */
 #ifdef __cplusplus

Modified: webservices/axis2/trunk/c/neethi/include/neethi_assertion.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/neethi_assertion.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/neethi_assertion.h (original)
+++ webservices/axis2/trunk/c/neethi/include/neethi_assertion.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -18,10 +19,9 @@
 #ifndef NEETHI_ASSERTION_H
 #define NEETHI_ASSERTION_H
 
-
 /**
   * @file neethi_assertion.h
-  * @common struct for policy assertions. 
+  * @common struct for policy assertions.
   */
 
 #include <axis2_defines.h>
@@ -34,8 +34,8 @@
 {
 #endif
 
-
-    typedef enum  {
+    typedef enum
+    {
         ASSERTION_TYPE_TRANSPORT_BINDING = 0,
         ASSERTION_TYPE_TRANSPORT_TOKEN,
         ASSERTION_TYPE_ALGORITHM_SUITE,
@@ -69,95 +69,106 @@
         ASSERTION_TYPE_WSS_X509_V3_TOKEN_10,
         ASSERTION_TYPE_SIGNED_ENCRYPTED_PARTS,
         ASSERTION_TYPE_UNKNOWN
-    }neethi_assertion_type_t;
+    } neethi_assertion_type_t;
 
     typedef struct neethi_assertion_t neethi_assertion_t;
 
     AXIS2_EXTERN neethi_assertion_t *AXIS2_CALL
-    neethi_assertion_create(const axutil_env_t *env);
+    neethi_assertion_create(
+        const axutil_env_t * env);
 
     neethi_assertion_t *AXIS2_CALL
-    neethi_assertion_create_with_args(const axutil_env_t *env,
+    neethi_assertion_create_with_args(
+        const axutil_env_t * env,
         AXIS2_FREE_VOID_ARG free_func,
         void *value,
         neethi_assertion_type_t type);
 
     AXIS2_EXTERN void AXIS2_CALL
-    neethi_assertion_free(neethi_assertion_t *neethi_assertion,
-        const axutil_env_t *env);
+    neethi_assertion_free(
+        neethi_assertion_t * neethi_assertion,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN neethi_assertion_type_t AXIS2_CALL
-    neethi_assertion_get_type(neethi_assertion_t *neethi_assertion,
-            const axutil_env_t *env);
+
+    neethi_assertion_get_type(
+        neethi_assertion_t * neethi_assertion,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN void *AXIS2_CALL
     neethi_assertion_get_value(
-        neethi_assertion_t *neethi_assertion,
-        const axutil_env_t *env);
+        neethi_assertion_t * neethi_assertion,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    neethi_assertion_set_value(neethi_assertion_t *neethi_assertion,
-        const axutil_env_t *env,
+    neethi_assertion_set_value(
+        neethi_assertion_t * neethi_assertion,
+        const axutil_env_t * env,
         void *value,
         neethi_assertion_type_t type);
 
     AXIS2_EXTERN axiom_element_t *AXIS2_CALL
     neethi_assertion_get_element(
-        neethi_assertion_t *neethi_assertion,
-        const axutil_env_t *env);
+        neethi_assertion_t * neethi_assertion,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    neethi_assertion_set_element(neethi_assertion_t *neethi_assertion,
-        const axutil_env_t *env,
-        axiom_element_t *element);
+    neethi_assertion_set_element(
+        neethi_assertion_t * neethi_assertion,
+        const axutil_env_t * env,
+        axiom_element_t * element);
 
     AXIS2_EXTERN axis2_bool_t AXIS2_CALL
     neethi_assertion_get_is_optional(
-        neethi_assertion_t *neethi_assertion,
-        const axutil_env_t *env);
+        neethi_assertion_t * neethi_assertion,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    neethi_assertion_set_is_optional(neethi_assertion_t *neethi_assertion,
-        const axutil_env_t *env,
+    neethi_assertion_set_is_optional(
+        neethi_assertion_t * neethi_assertion,
+        const axutil_env_t * env,
         axis2_bool_t is_optional);
-        
+
     AXIS2_EXTERN axutil_array_list_t *AXIS2_CALL
+
     neethi_assertion_get_policy_components(
-        neethi_assertion_t *neethi_assertion,
-        const axutil_env_t *env);
+        neethi_assertion_t * neethi_assertion,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
+
     neethi_assertion_add_policy_components(
-        neethi_assertion_t *neethi_assertion,
-        axutil_array_list_t *arraylist,
-        const axutil_env_t *env);
+        neethi_assertion_t * neethi_assertion,
+        axutil_array_list_t * arraylist,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    neethi_assertion_add_operator(neethi_assertion_t *neethi_assertion,
-        const axutil_env_t *env,
-        neethi_operator_t *op);
+    neethi_assertion_add_operator(
+        neethi_assertion_t * neethi_assertion,
+        const axutil_env_t * env,
+        neethi_operator_t * op);
 
     AXIS2_EXTERN axis2_bool_t AXIS2_CALL
-    neethi_assertion_is_empty(neethi_assertion_t *neethi_assertion,
-            const axutil_env_t *env);
+    neethi_assertion_is_empty(
+        neethi_assertion_t * neethi_assertion,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axiom_node_t *AXIS2_CALL
     neethi_assertion_get_node(
-            neethi_assertion_t *neethi_assertion,
-            const axutil_env_t *env);
+        neethi_assertion_t * neethi_assertion,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    neethi_assertion_set_node(neethi_assertion_t *neethi_assertion,
-            const axutil_env_t *env,
-            axiom_node_t *node);
+    neethi_assertion_set_node(
+        neethi_assertion_t * neethi_assertion,
+        const axutil_env_t * env,
+        axiom_node_t * node);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
     neethi_assertion_serialize(
-            neethi_assertion_t *assertion,
-            axiom_node_t *parent,
-            const axutil_env_t *env);
-    
-
+        neethi_assertion_t * assertion,
+        axiom_node_t * parent,
+        const axutil_env_t * env);
 
     /** @} */
 #ifdef __cplusplus

Modified: webservices/axis2/trunk/c/neethi/include/neethi_assertion_builder.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/neethi_assertion_builder.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/neethi_assertion_builder.h (original)
+++ webservices/axis2/trunk/c/neethi/include/neethi_assertion_builder.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Copyright 2004,2005 The Apache Software Foundation.
  *
@@ -33,11 +34,12 @@
 #endif
 
     AXIS2_EXTERN neethi_assertion_t *AXIS2_CALL
+
     neethi_assertion_builder_build(
-        const axutil_env_t *env,
-        axiom_node_t *node,
-        axiom_element_t *element);
- 
+        const axutil_env_t * env,
+        axiom_node_t * node,
+        axiom_element_t * element);
+
 #ifdef __cplusplus
 }
 #endif

Modified: webservices/axis2/trunk/c/neethi/include/neethi_constants.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/neethi_constants.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/neethi_constants.h (original)
+++ webservices/axis2/trunk/c/neethi/include/neethi_constants.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -18,7 +19,6 @@
 #ifndef NEETHI_CONSTANTS_H
 #define NEETHI_CONSTANTS_H
 
-
 #define NEETHI_EXACTLYONE "ExactlyOne"
 #define NEETHI_ALL "All"
 #define NEETHI_POLICY "Policy"
@@ -33,7 +33,7 @@
 
 /**
 * @file neethi_constants.h
-* @brief includes all the string constants 
+* @brief includes all the string constants
 */
 #ifdef __cplusplus
 extern "C"
@@ -46,4 +46,4 @@
 }
 #endif
 
-#endif /*NEETHI_INCLUDES_H*/
+#endif                          /*NEETHI_INCLUDES_H */

Modified: webservices/axis2/trunk/c/neethi/include/neethi_engine.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/neethi_engine.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/neethi_engine.h (original)
+++ webservices/axis2/trunk/c/neethi/include/neethi_engine.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -18,10 +19,9 @@
 #ifndef NEETHI_ENGINE_H
 #define NEETHI_ENGINE_H
 
-
 /**
   * @file neethi_engine.h
-  * @contains neethi_policy creation logic. 
+  * @contains neethi_policy creation logic.
   */
 
 #include <axis2_defines.h>
@@ -41,32 +41,34 @@
 #endif
 
     AXIS2_EXTERN neethi_policy_t *AXIS2_CALL
-    neethi_engine_get_policy(const axutil_env_t *env,
-            axiom_node_t *node,
-            axiom_element_t *element);
+    neethi_engine_get_policy(
+        const axutil_env_t * env,
+        axiom_node_t * node,
+        axiom_element_t * element);
 
     AXIS2_EXTERN neethi_policy_t *AXIS2_CALL
-    neethi_engine_get_normalize(const axutil_env_t *env,
-            axis2_bool_t deep,
-            neethi_policy_t *neethi_policy);
-            
-    
+    neethi_engine_get_normalize(
+        const axutil_env_t * env,
+        axis2_bool_t deep,
+        neethi_policy_t * neethi_policy);
+
     AXIS2_EXTERN neethi_policy_t *AXIS2_CALL
-    neethi_engine_normalize(const axutil_env_t *env,
-            neethi_policy_t *neethi_policy,
-            neethi_registry_t *registry,
-            axis2_bool_t deep);
-    
+    neethi_engine_normalize(
+        const axutil_env_t * env,
+        neethi_policy_t * neethi_policy,
+        neethi_registry_t * registry,
+        axis2_bool_t deep);
+
     AXIS2_EXTERN neethi_policy_t *AXIS2_CALL
-    neethi_engine_merge(const axutil_env_t *env,
-            neethi_policy_t *neethi_policy1,
-            neethi_policy_t *neethi_policy2);
+    neethi_engine_merge(
+        const axutil_env_t * env,
+        neethi_policy_t * neethi_policy1,
+        neethi_policy_t * neethi_policy2);
 
     AXIS2_EXTERN axiom_node_t *AXIS2_CALL
-    neethi_engine_serialize(neethi_policy_t *policy,
-                   const axutil_env_t *env);
-    
-
+    neethi_engine_serialize(
+        neethi_policy_t * policy,
+        const axutil_env_t * env);
 
     /** @} */
 #ifdef __cplusplus

Modified: webservices/axis2/trunk/c/neethi/include/neethi_exactlyone.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/neethi_exactlyone.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/neethi_exactlyone.h (original)
+++ webservices/axis2/trunk/c/neethi/include/neethi_exactlyone.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -18,10 +19,9 @@
 #ifndef NEETHI_EXACTLYONE_H
 #define NEETHI_EXACTLYONE_H
 
-
 /**
   * @file neethi_exactlyone.h
-  * @struct for operator exactlyone 
+  * @struct for operator exactlyone
   */
 
 #include <axis2_defines.h>
@@ -34,47 +34,52 @@
 {
 #endif
 
-        typedef struct neethi_exactlyone_t neethi_exactlyone_t; 
-
-        AXIS2_EXTERN neethi_exactlyone_t *AXIS2_CALL
-        neethi_exactlyone_create(const axutil_env_t *env);
-
-        AXIS2_EXTERN void AXIS2_CALL
-        neethi_exactlyone_free(neethi_exactlyone_t *neethi_exactlyone,
-                const axutil_env_t *env);
-                
-        AXIS2_EXTERN axutil_array_list_t *AXIS2_CALL
-        neethi_exactlyone_get_policy_components(
-            neethi_exactlyone_t *neethi_exactlyone,
-            const axutil_env_t *env);
-
-        AXIS2_EXTERN axis2_status_t AXIS2_CALL
-        neethi_exactlyone_add_policy_components(
-                neethi_exactlyone_t *exactlyone,
-                axutil_array_list_t *arraylist,
-                const axutil_env_t *env);
-
-        AXIS2_EXTERN axis2_status_t AXIS2_CALL
-        neethi_exactlyone_add_operator(neethi_exactlyone_t *neethi_exactlyone,
-            const axutil_env_t *env,
-            neethi_operator_t *op);
-
-        AXIS2_EXTERN axis2_bool_t AXIS2_CALL
-        neethi_exactlyone_is_empty(neethi_exactlyone_t *exactlyone,
-            const axutil_env_t *env);
-
-        AXIS2_EXTERN axis2_status_t AXIS2_CALL
-        neethi_exactlyone_serialize(
-            neethi_exactlyone_t *neethi_exactlyone,
-            axiom_node_t *parent,
-            const axutil_env_t *env);
-        
-        AXIS2_EXTERN axis2_status_t AXIS2_CALL
-        neethi_exactlyone_set_components_null(
-            neethi_exactlyone_t *exactlyone,
-            const axutil_env_t *env);
-        
+    typedef struct neethi_exactlyone_t neethi_exactlyone_t;
 
+    AXIS2_EXTERN neethi_exactlyone_t *AXIS2_CALL
+    neethi_exactlyone_create(
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN void AXIS2_CALL
+    neethi_exactlyone_free(
+        neethi_exactlyone_t * neethi_exactlyone,
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN axutil_array_list_t *AXIS2_CALL
+
+    neethi_exactlyone_get_policy_components(
+        neethi_exactlyone_t * neethi_exactlyone,
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN axis2_status_t AXIS2_CALL
+
+    neethi_exactlyone_add_policy_components(
+        neethi_exactlyone_t * exactlyone,
+        axutil_array_list_t * arraylist,
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN axis2_status_t AXIS2_CALL
+    neethi_exactlyone_add_operator(
+        neethi_exactlyone_t * neethi_exactlyone,
+        const axutil_env_t * env,
+        neethi_operator_t * op);
+
+    AXIS2_EXTERN axis2_bool_t AXIS2_CALL
+    neethi_exactlyone_is_empty(
+        neethi_exactlyone_t * exactlyone,
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN axis2_status_t AXIS2_CALL
+    neethi_exactlyone_serialize(
+        neethi_exactlyone_t * neethi_exactlyone,
+        axiom_node_t * parent,
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN axis2_status_t AXIS2_CALL
+
+    neethi_exactlyone_set_components_null(
+        neethi_exactlyone_t * exactlyone,
+        const axutil_env_t * env);
 
     /** @} */
 #ifdef __cplusplus

Modified: webservices/axis2/trunk/c/neethi/include/neethi_includes.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/neethi_includes.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/neethi_includes.h (original)
+++ webservices/axis2/trunk/c/neethi/include/neethi_includes.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -35,9 +36,10 @@
 #include <neethi_constants.h>
 #include <axutil_hash.h>
 #include <rp_defines.h>
+
 /**
 * @file neethi_includes.h
-* @brief includes most useful headers for policy 
+* @brief includes most useful headers for policy
 */
 #ifdef __cplusplus
 extern "C"
@@ -50,4 +52,4 @@
 }
 #endif
 
-#endif /*NEETHI_INCLUDES_H*/
+#endif                          /*NEETHI_INCLUDES_H */

Modified: webservices/axis2/trunk/c/neethi/include/neethi_operator.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/neethi_operator.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/neethi_operator.h (original)
+++ webservices/axis2/trunk/c/neethi/include/neethi_operator.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -18,73 +19,73 @@
 #ifndef NEETHI_OPERATOR_H
 #define NEETHI_OPERATOR_H
 
-
 /**
   * @file neethi_operator.h
-  * @common struct for policy operators. 
+  * @common struct for policy operators.
   */
 
 #include <axis2_defines.h>
 #include <axutil_env.h>
 #include <neethi_includes.h>
 
-
 #ifdef __cplusplus
 extern "C"
 {
 #endif
 
-
-    typedef enum  {
+    typedef enum
+    {
         OPERATOR_TYPE_POLICY = 0,
         OPERATOR_TYPE_ALL,
         OPERATOR_TYPE_EXACTLYONE,
         OPERATOR_TYPE_REFERENCE,
         OPERATOR_TYPE_ASSERTION,
         OPERATOR_TYPE_UNKNOWN
-    }neethi_operator_type_t;
+    } neethi_operator_type_t;
 
     typedef struct neethi_operator_t neethi_operator_t;
 
-
     AXIS2_EXTERN neethi_operator_t *AXIS2_CALL
-    neethi_operator_create(const axutil_env_t *env);
+    neethi_operator_create(
+        const axutil_env_t * env);
 
     AXIS2_EXTERN void AXIS2_CALL
-    neethi_operator_free(neethi_operator_t *neethi_operator,
-            const axutil_env_t *env);
+    neethi_operator_free(
+        neethi_operator_t * neethi_operator,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN neethi_operator_type_t AXIS2_CALL
-    neethi_operator_get_type(neethi_operator_t *neethi_operator,
-            const axutil_env_t *env);
+    neethi_operator_get_type(
+        neethi_operator_t * neethi_operator,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN void *AXIS2_CALL
     neethi_operator_get_value(
-            neethi_operator_t *neethi_operator,
-            const axutil_env_t *env);
+        neethi_operator_t * neethi_operator,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    neethi_operator_set_value(neethi_operator_t *neethi_operator,
-            const axutil_env_t *env,
-            void *value,
-            neethi_operator_type_t type);
+    neethi_operator_set_value(
+        neethi_operator_t * neethi_operator,
+        const axutil_env_t * env,
+        void *value,
+        neethi_operator_type_t type);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
     neethi_operator_serialize(
-            neethi_operator_t *neethi_operator,
-            const axutil_env_t *env,
-            axiom_node_t *parent);
-   
+        neethi_operator_t * neethi_operator,
+        const axutil_env_t * env,
+        axiom_node_t * parent);
+
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
     neethi_operator_set_value_null(
-            neethi_operator_t *neethi_operator,
-            const axutil_env_t *env);
-    
+        neethi_operator_t * neethi_operator,
+        const axutil_env_t * env);
+
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
     neethi_operator_increment_ref(
-        neethi_operator_t *neethi_operator,
-        const axutil_env_t *env);
-
+        neethi_operator_t * neethi_operator,
+        const axutil_env_t * env);
 
     /** @} */
 #ifdef __cplusplus

Modified: webservices/axis2/trunk/c/neethi/include/neethi_policy.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/neethi_policy.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/neethi_policy.h (original)
+++ webservices/axis2/trunk/c/neethi/include/neethi_policy.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -18,10 +19,9 @@
 #ifndef NEETHI_POLICY_H
 #define NEETHI_POLICY_H
 
-
 /**
   * @file neethi_policy.h
-  * @struct for operator neethi_policy 
+  * @struct for operator neethi_policy
   */
 
 #include <axis2_defines.h>
@@ -35,84 +35,91 @@
 {
 #endif
 
-        typedef struct neethi_policy_t neethi_policy_t; 
-
-        AXIS2_EXTERN neethi_policy_t *AXIS2_CALL
-        neethi_policy_create(const axutil_env_t *env);
-
-        AXIS2_EXTERN void AXIS2_CALL
-        neethi_policy_free(neethi_policy_t *neethi_policy,
-                const axutil_env_t *env);
-                
-        AXIS2_EXTERN axutil_array_list_t *AXIS2_CALL
-        neethi_policy_get_policy_components(
-            neethi_policy_t *neethi_policy,
-            const axutil_env_t *env);
-
-        AXIS2_EXTERN axis2_status_t AXIS2_CALL
-        neethi_policy_add_policy_components(
-            neethi_policy_t *neethi_policy,
-            axutil_array_list_t *arraylist,
-            const axutil_env_t *env);
-        
-        AXIS2_EXTERN axis2_status_t AXIS2_CALL
-        neethi_policy_add_operator(neethi_policy_t *neethi_policy,
-            const axutil_env_t *env,
-            neethi_operator_t *op);
-
-        AXIS2_EXTERN axis2_bool_t AXIS2_CALL
-        neethi_policy_is_empty(neethi_policy_t *neethi_policy,
-            const axutil_env_t *env);
-
-        AXIS2_EXTERN neethi_exactlyone_t *AXIS2_CALL
-        neethi_policy_get_exactlyone(
-        neethi_policy_t *normalized_neethi_policy,
-            const axutil_env_t *env);
-        
-        AXIS2_EXTERN axutil_array_list_t *AXIS2_CALL
-        neethi_policy_get_alternatives(
-            neethi_policy_t *neethi_policy,
-            const axutil_env_t *env);
-       
-        AXIS2_EXTERN axis2_char_t *AXIS2_CALL
-        neethi_policy_get_name(
-            neethi_policy_t *neethi_policy,
-            const axutil_env_t *env);
-
-        AXIS2_EXTERN axis2_status_t AXIS2_CALL
-        neethi_policy_set_name(
-            neethi_policy_t *neethi_policy,
-            const axutil_env_t *env,
-            axis2_char_t *name);
-
-        AXIS2_EXTERN axis2_char_t *AXIS2_CALL
-        neethi_policy_get_id(
-            neethi_policy_t *neethi_policy,
-            const axutil_env_t *env);
-
-        AXIS2_EXTERN axis2_status_t AXIS2_CALL
-        neethi_policy_set_id(
-            neethi_policy_t *neethi_policy,
-            const axutil_env_t *env,
-            axis2_char_t *id);
-
-        AXIS2_EXTERN axiom_node_t *AXIS2_CALL
-        neethi_policy_serialize(
-            neethi_policy_t *neethi_policy,
-            axiom_node_t *parent,
-            const axutil_env_t *env);
-        
-        AXIS2_EXTERN axis2_status_t AXIS2_CALL
-        neethi_policy_set_components_null(
-            neethi_policy_t *policy,
-            const axutil_env_t *env);
-
-        AXIS2_EXTERN axis2_status_t AXIS2_CALL
-        neethi_policy_set_root_node(
-            neethi_policy_t *policy,
-            const axutil_env_t *env,
-            axiom_node_t *root_node);
+    typedef struct neethi_policy_t neethi_policy_t;
 
+    AXIS2_EXTERN neethi_policy_t *AXIS2_CALL
+    neethi_policy_create(
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN void AXIS2_CALL
+    neethi_policy_free(
+        neethi_policy_t * neethi_policy,
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN axutil_array_list_t *AXIS2_CALL
+
+    neethi_policy_get_policy_components(
+        neethi_policy_t * neethi_policy,
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN axis2_status_t AXIS2_CALL
+
+    neethi_policy_add_policy_components(
+        neethi_policy_t * neethi_policy,
+        axutil_array_list_t * arraylist,
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN axis2_status_t AXIS2_CALL
+    neethi_policy_add_operator(
+        neethi_policy_t * neethi_policy,
+        const axutil_env_t * env,
+        neethi_operator_t * op);
+
+    AXIS2_EXTERN axis2_bool_t AXIS2_CALL
+    neethi_policy_is_empty(
+        neethi_policy_t * neethi_policy,
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN neethi_exactlyone_t *AXIS2_CALL
+
+    neethi_policy_get_exactlyone(
+        neethi_policy_t * normalized_neethi_policy,
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN axutil_array_list_t *AXIS2_CALL
+
+    neethi_policy_get_alternatives(
+        neethi_policy_t * neethi_policy,
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN axis2_char_t *AXIS2_CALL
+    neethi_policy_get_name(
+        neethi_policy_t * neethi_policy,
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN axis2_status_t AXIS2_CALL
+    neethi_policy_set_name(
+        neethi_policy_t * neethi_policy,
+        const axutil_env_t * env,
+        axis2_char_t * name);
+
+    AXIS2_EXTERN axis2_char_t *AXIS2_CALL
+    neethi_policy_get_id(
+        neethi_policy_t * neethi_policy,
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN axis2_status_t AXIS2_CALL
+    neethi_policy_set_id(
+        neethi_policy_t * neethi_policy,
+        const axutil_env_t * env,
+        axis2_char_t * id);
+
+    AXIS2_EXTERN axiom_node_t *AXIS2_CALL
+    neethi_policy_serialize(
+        neethi_policy_t * neethi_policy,
+        axiom_node_t * parent,
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN axis2_status_t AXIS2_CALL
+    neethi_policy_set_components_null(
+        neethi_policy_t * policy,
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN axis2_status_t AXIS2_CALL
+    neethi_policy_set_root_node(
+        neethi_policy_t * policy,
+        const axutil_env_t * env,
+        axiom_node_t * root_node);
 
     /** @} */
 #ifdef __cplusplus

Modified: webservices/axis2/trunk/c/neethi/include/neethi_reference.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/neethi_reference.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/neethi_reference.h (original)
+++ webservices/axis2/trunk/c/neethi/include/neethi_reference.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -18,10 +19,9 @@
 #ifndef NEETHI_REFERENCE_H
 #define NEETHI_REFERENCE_H
 
-
 /**
   * @file neethi_reference.h
-  * @struct for operator reference 
+  * @struct for operator reference
   */
 
 #include <axis2_defines.h>
@@ -33,33 +33,33 @@
 {
 #endif
 
-        typedef struct neethi_reference_t neethi_reference_t; 
-
-        AXIS2_EXTERN neethi_reference_t *AXIS2_CALL
-        neethi_reference_create(const axutil_env_t *env);
-
-        AXIS2_EXTERN void AXIS2_CALL
-        neethi_reference_free(neethi_reference_t *neethi_reference,
-                const axutil_env_t *env);
-
-        AXIS2_EXTERN axis2_char_t *AXIS2_CALL
-        neethi_reference_get_uri(
-            neethi_reference_t *neethi_reference,
-            const axutil_env_t *env);
-
-        AXIS2_EXTERN axis2_status_t AXIS2_CALL
-        neethi_reference_set_uri(
-            neethi_reference_t *neethi_reference,
-            const axutil_env_t *env,
-            axis2_char_t *uri);
-
-        AXIS2_EXTERN axis2_status_t AXIS2_CALL
-        neethi_reference_serialize(
-            neethi_reference_t *neethi_reference,
-            axiom_node_t *parent,
-            const axutil_env_t *env);
-
+    typedef struct neethi_reference_t neethi_reference_t;
 
+    AXIS2_EXTERN neethi_reference_t *AXIS2_CALL
+    neethi_reference_create(
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN void AXIS2_CALL
+    neethi_reference_free(
+        neethi_reference_t * neethi_reference,
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN axis2_char_t *AXIS2_CALL
+    neethi_reference_get_uri(
+        neethi_reference_t * neethi_reference,
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN axis2_status_t AXIS2_CALL
+    neethi_reference_set_uri(
+        neethi_reference_t * neethi_reference,
+        const axutil_env_t * env,
+        axis2_char_t * uri);
+
+    AXIS2_EXTERN axis2_status_t AXIS2_CALL
+    neethi_reference_serialize(
+        neethi_reference_t * neethi_reference,
+        axiom_node_t * parent,
+        const axutil_env_t * env);
 
     /** @} */
 #ifdef __cplusplus

Modified: webservices/axis2/trunk/c/neethi/include/neethi_registry.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/neethi_registry.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/neethi_registry.h (original)
+++ webservices/axis2/trunk/c/neethi/include/neethi_registry.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -18,10 +19,9 @@
 #ifndef NEETHI_REGISTRY_H
 #define NEETHI_REGISTRY_H
 
-
 /**
   * @file neethi_registry.h
-  * @struct for operator registry 
+  * @struct for operator registry
   */
 
 #include <axis2_defines.h>
@@ -34,38 +34,39 @@
 {
 #endif
 
-        typedef struct neethi_registry_t neethi_registry_t; 
-
-        AXIS2_EXTERN neethi_registry_t *AXIS2_CALL
-        neethi_registry_create(const axutil_env_t *env);
-
-        AXIS2_EXTERN neethi_registry_t *AXIS2_CALL
-        neethi_registry_create_with_parent(
-            const axutil_env_t *env,
-            neethi_registry_t *parent);
-        
-        AXIS2_EXTERN void AXIS2_CALL
-        neethi_registry_free(neethi_registry_t *neethi_registry,
-                const axutil_env_t *env);
-                
-        AXIS2_EXTERN axis2_status_t AXIS2_CALL
-        neethi_registry_register(
-            neethi_registry_t *neethi_registry,
-            const axutil_env_t *env,
-            axis2_char_t *key,
-            neethi_policy_t *value);
-
-        AXIS2_EXTERN neethi_policy_t *AXIS2_CALL
-        neethi_registry_lookup(
-            neethi_registry_t *neethi_registry,
-            const axutil_env_t *env,
-            axis2_char_t *key);
-
+    typedef struct neethi_registry_t neethi_registry_t;
 
+    AXIS2_EXTERN neethi_registry_t *AXIS2_CALL
+    neethi_registry_create(
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN neethi_registry_t *AXIS2_CALL
+
+    neethi_registry_create_with_parent(
+        const axutil_env_t * env,
+        neethi_registry_t * parent);
+
+    AXIS2_EXTERN void AXIS2_CALL
+    neethi_registry_free(
+        neethi_registry_t * neethi_registry,
+        const axutil_env_t * env);
+
+    AXIS2_EXTERN axis2_status_t AXIS2_CALL
+    neethi_registry_register(
+        neethi_registry_t * neethi_registry,
+        const axutil_env_t * env,
+        axis2_char_t * key,
+        neethi_policy_t * value);
+
+    AXIS2_EXTERN neethi_policy_t *AXIS2_CALL
+    neethi_registry_lookup(
+        neethi_registry_t * neethi_registry,
+        const axutil_env_t * env,
+        axis2_char_t * key);
 
     /** @} */
 #ifdef __cplusplus
 }
 #endif
 
-#endif                          /* NEETHI_REGISTRY_H*/
+#endif                          /* NEETHI_REGISTRY_H */

Modified: webservices/axis2/trunk/c/neethi/include/neethi_util.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/neethi_util.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/neethi_util.h (original)
+++ webservices/axis2/trunk/c/neethi/include/neethi_util.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -18,10 +19,9 @@
 #ifndef NEETHI_UTIL_H
 #define NEETHI_UTIL_H
 
-
 /**
   * @file neethi_util.h
-  * @policy creation utilities 
+  * @policy creation utilities
   */
 
 #include <axis2_defines.h>
@@ -36,16 +36,16 @@
 #endif
 
     AXIS2_EXTERN neethi_policy_t *AXIS2_CALL
+
     neethi_util_create_policy_from_file(
-            const axutil_env_t *env,
-            axis2_char_t *file_name);
-    
-    AXIS2_EXTERN neethi_policy_t *AXIS2_CALL
-    neethi_util_create_policy_from_om(
-        const axutil_env_t *env,
-        axiom_node_t *root_node);
+        const axutil_env_t * env,
+        axis2_char_t * file_name);
 
+    AXIS2_EXTERN neethi_policy_t *AXIS2_CALL
 
+    neethi_util_create_policy_from_om(
+        const axutil_env_t * env,
+        axiom_node_t * root_node);
 
     /** @} */
 #ifdef __cplusplus

Modified: webservices/axis2/trunk/c/neethi/include/rp_algorithmsuite.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/rp_algorithmsuite.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/rp_algorithmsuite.h (original)
+++ webservices/axis2/trunk/c/neethi/include/rp_algorithmsuite.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Copyright 2004,2005 The Apache Software Foundation.
  *
@@ -32,147 +33,195 @@
     typedef struct rp_algorithmsuite_t rp_algorithmsuite_t;
 
     AXIS2_EXTERN rp_algorithmsuite_t *AXIS2_CALL
-    rp_algorithmsuite_create(const axutil_env_t *env);
+    rp_algorithmsuite_create(
+        const axutil_env_t * env);
 
     AXIS2_EXTERN void AXIS2_CALL
-    rp_algorithmsuite_free(rp_algorithmsuite_t *algorithmsuite,
-                           const axutil_env_t *env);
+    rp_algorithmsuite_free(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_char_t *AXIS2_CALL
-    rp_algorithmsuite_get_algosuite_string(rp_algorithmsuite_t *algorithmsuite,
-                                           const axutil_env_t *env);
+
+    rp_algorithmsuite_get_algosuite_string(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    rp_algorithmsuite_set_algosuite(rp_algorithmsuite_t *algorithmsuite,
-                                    const axutil_env_t *env,
-                                    axis2_char_t *algosuite_string);
+    rp_algorithmsuite_set_algosuite(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env,
+        axis2_char_t * algosuite_string);
 
     AXIS2_EXTERN axis2_char_t *AXIS2_CALL
-    rp_algorithmsuite_get_symmetric_signature(rp_algorithmsuite_t *algorithmsuite,
-            const axutil_env_t *env);
+
+    rp_algorithmsuite_get_symmetric_signature(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    rp_algorithmsuite_set_symmetric_signature(rp_algorithmsuite_t *algorithmsuite,
-            const axutil_env_t *env,
-            axis2_char_t *symmetric_signature);
+
+    rp_algorithmsuite_set_symmetric_signature(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env,
+        axis2_char_t * symmetric_signature);
 
     AXIS2_EXTERN axis2_char_t *AXIS2_CALL
-    rp_algorithmsuite_get_asymmetric_signature(rp_algorithmsuite_t *algorithmsuite,
-            const axutil_env_t *env);
+
+    rp_algorithmsuite_get_asymmetric_signature(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    rp_algorithmsuite_set_asymmetric_signature(rp_algorithmsuite_t *algorithmsuite,
-            const axutil_env_t *env,
-            axis2_char_t *asymmetric_signature);
+
+    rp_algorithmsuite_set_asymmetric_signature(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env,
+        axis2_char_t * asymmetric_signature);
 
     AXIS2_EXTERN axis2_char_t *AXIS2_CALL
-    rp_algorithmsuite_get_computed_key(rp_algorithmsuite_t *algorithmsuite,
-                                       const axutil_env_t *env);
+    rp_algorithmsuite_get_computed_key(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    rp_algorithmsuite_set_computed_key(rp_algorithmsuite_t *algorithmsuite,
-                                       const axutil_env_t *env,
-                                       axis2_char_t *computed_key);
+
+    rp_algorithmsuite_set_computed_key(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env,
+        axis2_char_t * computed_key);
 
     AXIS2_EXTERN axis2_char_t *AXIS2_CALL
-    rp_algorithmsuite_get_digest(rp_algorithmsuite_t *algorithmsuite,
-                                 const axutil_env_t *env);
+    rp_algorithmsuite_get_digest(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_char_t *AXIS2_CALL
-    rp_algorithmsuite_get_encryption(rp_algorithmsuite_t *algorithmsuite,
-                                     const axutil_env_t *env);
+    rp_algorithmsuite_get_encryption(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN int AXIS2_CALL
-    rp_algorithmsuite_get_max_symmetric_keylength(rp_algorithmsuite_t *algorithmsuite,
-            const axutil_env_t *env);
+
+    rp_algorithmsuite_get_max_symmetric_keylength(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    rp_algorithmsuite_set_max_symmetric_keylength(rp_algorithmsuite_t *algorithmsuite,
-            const axutil_env_t *env,
-            int max_symmetric_keylength);
+
+    rp_algorithmsuite_set_max_symmetric_keylength(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env,
+        int max_symmetric_keylength);
 
     AXIS2_EXTERN int AXIS2_CALL
-    rp_algorithmsuite_get_min_symmetric_keylength(rp_algorithmsuite_t *algorithmsuite,
-            const axutil_env_t *env);
+
+    rp_algorithmsuite_get_min_symmetric_keylength(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN int AXIS2_CALL
-    rp_algorithmsuite_get_max_asymmetric_keylength(rp_algorithmsuite_t *algorithmsuite,
-            const axutil_env_t *env);
+
+    rp_algorithmsuite_get_max_asymmetric_keylength(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    rp_algorithmsuite_set_max_asymmetric_keylength(rp_algorithmsuite_t *algorithmsuite,
-            const axutil_env_t *env,
-            int max_asymmetric_keylength);
+
+    rp_algorithmsuite_set_max_asymmetric_keylength(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env,
+        int max_asymmetric_keylength);
 
     AXIS2_EXTERN int AXIS2_CALL
-    rp_algorithmsuite_get_min_asymmetric_keylength(rp_algorithmsuite_t *algorithmsuite,
-            const axutil_env_t *env);
+
+    rp_algorithmsuite_get_min_asymmetric_keylength(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    rp_algorithmsuite_set_min_asymmetric_keylength(rp_algorithmsuite_t *algorithmsuite,
-            const axutil_env_t *env,
-            int min_asymmetric_keylength);
+
+    rp_algorithmsuite_set_min_asymmetric_keylength(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env,
+        int min_asymmetric_keylength);
 
     AXIS2_EXTERN axis2_char_t *AXIS2_CALL
-    rp_algorithmsuite_get_symmetrickeywrap(rp_algorithmsuite_t *algorithmsuite,
-                                           const axutil_env_t *env);
 
+    rp_algorithmsuite_get_symmetrickeywrap(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_char_t *AXIS2_CALL
-    rp_algorithmsuite_get_asymmetrickeywrap(rp_algorithmsuite_t *algorithmsuite,
-                                            const axutil_env_t *env);
 
+    rp_algorithmsuite_get_asymmetrickeywrap(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_char_t *AXIS2_CALL
-    rp_algorithmsuite_get_signature_key_derivation(rp_algorithmsuite_t *algorithmsuite,
-            const axutil_env_t *env);
 
+    rp_algorithmsuite_get_signature_key_derivation(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_char_t *AXIS2_CALL
-    rp_algorithmsuite_get_encryption_key_derivation(rp_algorithmsuite_t *algorithmsuite,
-            const axutil_env_t *env);
 
+    rp_algorithmsuite_get_encryption_key_derivation(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_char_t *AXIS2_CALL
-    rp_algorithmsuite_get_soap_normalization(rp_algorithmsuite_t *algorithmsuite,
-            const axutil_env_t *env);
+
+    rp_algorithmsuite_get_soap_normalization(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    rp_algorithmsuite_set_soap_normalization(rp_algorithmsuite_t *algorithmsuite,
-            const axutil_env_t *env,
-            axis2_char_t *soap_normalization);
+
+    rp_algorithmsuite_set_soap_normalization(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env,
+        axis2_char_t * soap_normalization);
 
     AXIS2_EXTERN axis2_char_t *AXIS2_CALL
-    rp_algorithmsuite_get_str_transformation(rp_algorithmsuite_t *algorithmsuite,
-            const axutil_env_t *env);
+
+    rp_algorithmsuite_get_str_transformation(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    rp_algorithmsuite_set_str_transformation(rp_algorithmsuite_t *algorithmsuite,
-            const axutil_env_t *env,
-            axis2_char_t *str_transformation);
+
+    rp_algorithmsuite_set_str_transformation(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env,
+        axis2_char_t * str_transformation);
 
     AXIS2_EXTERN axis2_char_t *AXIS2_CALL
-    rp_algorithmsuite_get_c14n(rp_algorithmsuite_t *algorithmsuite,
-                               const axutil_env_t *env);
+    rp_algorithmsuite_get_c14n(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    rp_algorithmsuite_set_c14n(rp_algorithmsuite_t *algorithmsuite,
-                               const axutil_env_t *env,
-                               axis2_char_t *c14n);
+    rp_algorithmsuite_set_c14n(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env,
+        axis2_char_t * c14n);
 
     AXIS2_EXTERN axis2_char_t *AXIS2_CALL
-    rp_algorithmsuite_get_xpath(rp_algorithmsuite_t *algorithmsuite,
-                                const axutil_env_t *env);
+    rp_algorithmsuite_get_xpath(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    rp_algorithmsuite_set_xpath(rp_algorithmsuite_t *algorithmsuite,
-                                const axutil_env_t *env,
-                                axis2_char_t *xpath);
+    rp_algorithmsuite_set_xpath(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env,
+        axis2_char_t * xpath);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    rp_algorithmsuite_increment_ref(rp_algorithmsuite_t *algorithmsuite,
-                                    const axutil_env_t *env);
-    
+    rp_algorithmsuite_increment_ref(
+        rp_algorithmsuite_t * algorithmsuite,
+        const axutil_env_t * env);
 
 #ifdef __cplusplus
 }

Modified: webservices/axis2/trunk/c/neethi/include/rp_algorithmsuite_builder.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/rp_algorithmsuite_builder.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/rp_algorithmsuite_builder.h (original)
+++ webservices/axis2/trunk/c/neethi/include/rp_algorithmsuite_builder.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Copyright 2004,2005 The Apache Software Foundation.
  *
@@ -33,11 +34,12 @@
 #endif
 
     AXIS2_EXTERN neethi_assertion_t *AXIS2_CALL
+
     rp_algorithmsuite_builder_build(
-        const axutil_env_t *env,
-        axiom_node_t *node,
-        axiom_element_t *element);
- 
+        const axutil_env_t * env,
+        axiom_node_t * node,
+        axiom_element_t * element);
+
 #ifdef __cplusplus
 }
 #endif

Modified: webservices/axis2/trunk/c/neethi/include/rp_asymmetric_binding.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/rp_asymmetric_binding.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/rp_asymmetric_binding.h (original)
+++ webservices/axis2/trunk/c/neethi/include/rp_asymmetric_binding.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Copyright 2004,2005 The Apache Software Foundation.
  *
@@ -34,54 +35,62 @@
     typedef struct rp_asymmetric_binding_t rp_asymmetric_binding_t;
 
     AXIS2_EXTERN rp_asymmetric_binding_t *AXIS2_CALL
-    rp_asymmetric_binding_create(const axutil_env_t *env);
+
+    rp_asymmetric_binding_create(
+        const axutil_env_t * env);
 
     AXIS2_EXTERN void AXIS2_CALL
     rp_asymmetric_binding_free(
-        rp_asymmetric_binding_t *asymmetric_binding,
-        const axutil_env_t *env);
+        rp_asymmetric_binding_t * asymmetric_binding,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN rp_symmetric_asymmetric_binding_commons_t *AXIS2_CALL
+
     rp_asymmetric_binding_get_symmetric_asymmetric_binding_commons(
-        rp_asymmetric_binding_t *asymmetric_binding,
-        const axutil_env_t *env);
+        rp_asymmetric_binding_t * asymmetric_binding,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
+
     rp_asymmetric_binding_set_symmetric_asymmetric_binding_commons(
-        rp_asymmetric_binding_t *asymmetric_binding,
-        const axutil_env_t *env,
-        rp_symmetric_asymmetric_binding_commons_t *symmetric_asymmetric_binding_commons);
+        rp_asymmetric_binding_t * asymmetric_binding,
+        const axutil_env_t * env,
+        rp_symmetric_asymmetric_binding_commons_t *
+        symmetric_asymmetric_binding_commons);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
+
     rp_asymmetric_binding_set_initiator_token(
-        rp_asymmetric_binding_t *asymmetric_binding,
-        const axutil_env_t *env,
-        rp_property_t *initiator_token);
+        rp_asymmetric_binding_t * asymmetric_binding,
+        const axutil_env_t * env,
+        rp_property_t * initiator_token);
 
     AXIS2_EXTERN rp_property_t *AXIS2_CALL
+
     rp_asymmetric_binding_get_initiator_token(
-        rp_asymmetric_binding_t *asymmetric_binding,
-        const axutil_env_t *env);
+        rp_asymmetric_binding_t * asymmetric_binding,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
+
     rp_asymmetric_binding_set_recipient_token(
-        rp_asymmetric_binding_t *asymmetric_binding,
-        const axutil_env_t *env,
-        rp_property_t *recipient_token);
+        rp_asymmetric_binding_t * asymmetric_binding,
+        const axutil_env_t * env,
+        rp_property_t * recipient_token);
 
     AXIS2_EXTERN rp_property_t *AXIS2_CALL
+
     rp_asymmetric_binding_get_recipient_token(
-        rp_asymmetric_binding_t *asymmetric_binding,
-        const axutil_env_t *env);
+        rp_asymmetric_binding_t * asymmetric_binding,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
+
     rp_asymmetric_binding_increment_ref(
-        rp_asymmetric_binding_t *asymmetric_binding,
-        const axutil_env_t *env);
-    
+        rp_asymmetric_binding_t * asymmetric_binding,
+        const axutil_env_t * env);
 
 #ifdef __cplusplus
 }
 #endif
 #endif
-

Modified: webservices/axis2/trunk/c/neethi/include/rp_asymmetric_binding_builder.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/rp_asymmetric_binding_builder.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/rp_asymmetric_binding_builder.h (original)
+++ webservices/axis2/trunk/c/neethi/include/rp_asymmetric_binding_builder.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Copyright 2004,2005 The Apache Software Foundation.
  *
@@ -32,13 +33,12 @@
 {
 #endif
 
-
     AXIS2_EXTERN neethi_assertion_t *AXIS2_CALL
-    rp_asymmetric_binding_builder_build(
-        const axutil_env_t *env,
-        axiom_node_t *node,
-        axiom_element_t *element);
 
+    rp_asymmetric_binding_builder_build(
+        const axutil_env_t * env,
+        axiom_node_t * node,
+        axiom_element_t * element);
 
 #ifdef __cplusplus
 }

Modified: webservices/axis2/trunk/c/neethi/include/rp_binding_commons.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/rp_binding_commons.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/rp_binding_commons.h (original)
+++ webservices/axis2/trunk/c/neethi/include/rp_binding_commons.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Copyright 2004,2005 The Apache Software Foundation.
  *
@@ -34,86 +35,102 @@
     typedef struct rp_binding_commons_t rp_binding_commons_t;
 
     AXIS2_EXTERN rp_binding_commons_t *AXIS2_CALL
-    rp_binding_commons_create(const axutil_env_t *env);
+    rp_binding_commons_create(
+        const axutil_env_t * env);
 
     AXIS2_EXTERN void AXIS2_CALL
-    rp_binding_commons_free(rp_binding_commons_t *binding_commons,
-                            const axutil_env_t *env);
+    rp_binding_commons_free(
+        rp_binding_commons_t * binding_commons,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN rp_algorithmsuite_t *AXIS2_CALL
-    rp_binding_commons_get_algorithmsuite(rp_binding_commons_t *binding_commons,
-                                          const axutil_env_t *env);
+
+    rp_binding_commons_get_algorithmsuite(
+        rp_binding_commons_t * binding_commons,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    rp_binding_commons_set_algorithmsuite(rp_binding_commons_t *binding_commons,
-                                          const axutil_env_t *env,
-                                          rp_algorithmsuite_t *algorithmsuite);
+
+    rp_binding_commons_set_algorithmsuite(
+        rp_binding_commons_t * binding_commons,
+        const axutil_env_t * env,
+        rp_algorithmsuite_t * algorithmsuite);
 
     AXIS2_EXTERN axis2_bool_t AXIS2_CALL
-    rp_binding_commons_get_include_timestamp(rp_binding_commons_t *binding_commons,
-            const axutil_env_t *env);
+
+    rp_binding_commons_get_include_timestamp(
+        rp_binding_commons_t * binding_commons,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    rp_binding_commons_set_include_timestamp(rp_binding_commons_t *binding_commons,
-            const axutil_env_t *env,
-            axis2_bool_t include_timestamp);
 
-    AXIS2_EXTERN rp_layout_t *AXIS2_CALL
-    rp_binding_commons_get_layout(rp_binding_commons_t *binding_commons,
-                                  const axutil_env_t *env);
+    rp_binding_commons_set_include_timestamp(
+        rp_binding_commons_t * binding_commons,
+        const axutil_env_t * env,
+        axis2_bool_t include_timestamp);
 
+    AXIS2_EXTERN rp_layout_t *AXIS2_CALL
+    rp_binding_commons_get_layout(
+        rp_binding_commons_t * binding_commons,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    rp_binding_commons_set_layout(rp_binding_commons_t *binding_commons,
-                                  const axutil_env_t *env,
-                                  rp_layout_t *layout);
+    rp_binding_commons_set_layout(
+        rp_binding_commons_t * binding_commons,
+        const axutil_env_t * env,
+        rp_layout_t * layout);
 
     AXIS2_EXTERN rp_supporting_tokens_t *AXIS2_CALL
+
     rp_binding_commons_get_signed_supporting_tokens(
-        rp_binding_commons_t *binding_commons,
-        const axutil_env_t *env);
+        rp_binding_commons_t * binding_commons,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    rp_binding_commons_set_signed_supporting_tokens(
-        rp_binding_commons_t *binding_commons,
-        const axutil_env_t *env,
-        rp_supporting_tokens_t *signed_supporting_tokens);
 
+    rp_binding_commons_set_signed_supporting_tokens(
+        rp_binding_commons_t * binding_commons,
+        const axutil_env_t * env,
+        rp_supporting_tokens_t * signed_supporting_tokens);
 
     AXIS2_EXTERN rp_supporting_tokens_t *AXIS2_CALL
-    rp_binding_commons_get_signed_endorsing_supporting_tokens(
-        rp_binding_commons_t *binding_commons,
-        const axutil_env_t *env);
 
+    rp_binding_commons_get_signed_endorsing_supporting_tokens(
+        rp_binding_commons_t * binding_commons,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
+
     rp_binding_commons_set_signed_endorsing_supporting_tokens(
-        rp_binding_commons_t *binding_commons,
-        const axutil_env_t *env,
-        rp_supporting_tokens_t *signed_endorsing_supporting_tokens);
+        rp_binding_commons_t * binding_commons,
+        const axutil_env_t * env,
+        rp_supporting_tokens_t * signed_endorsing_supporting_tokens);
 
     AXIS2_EXTERN rp_supporting_tokens_t *AXIS2_CALL
+
     rp_binding_commons_get_endorsing_supporting_tokens(
-        rp_binding_commons_t *binding_commons,
-        const axutil_env_t *env);
+        rp_binding_commons_t * binding_commons,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
+
     rp_binding_commons_set_endorsing_supporting_tokens(
-        rp_binding_commons_t *binding_commons,
-        const axutil_env_t *env,
-        rp_supporting_tokens_t *endorsing_supporting_tokens);
+        rp_binding_commons_t * binding_commons,
+        const axutil_env_t * env,
+        rp_supporting_tokens_t * endorsing_supporting_tokens);
 
     AXIS2_EXTERN rp_supporting_tokens_t *AXIS2_CALL
+
     rp_binding_commons_get_supporting_tokens(
-        rp_binding_commons_t *binding_commons,
-        const axutil_env_t *env);
+        rp_binding_commons_t * binding_commons,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    rp_binding_commons_set_supporting_tokens(
-        rp_binding_commons_t *binding_commons,
-        const axutil_env_t *env,
-        rp_supporting_tokens_t *supporting_tokens);
 
+    rp_binding_commons_set_supporting_tokens(
+        rp_binding_commons_t * binding_commons,
+        const axutil_env_t * env,
+        rp_supporting_tokens_t * supporting_tokens);
 
 #ifdef __cplusplus
 }

Modified: webservices/axis2/trunk/c/neethi/include/rp_builders.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/rp_builders.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/rp_builders.h (original)
+++ webservices/axis2/trunk/c/neethi/include/rp_builders.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -35,9 +36,10 @@
 #include <rp_asymmetric_binding_builder.h>
 #include <rp_signed_encrypted_parts_builder.h>
 #include <rp_rampart_config_builder.h>
+
 /**
 * @file rp_builders.h
-* @all the secpolicy builders 
+* @all the secpolicy builders
 */
 #ifdef __cplusplus
 extern "C"
@@ -50,4 +52,4 @@
 }
 #endif
 
-#endif /*RP_BUILDERS_H*/
+#endif                          /*RP_BUILDERS_H */

Modified: webservices/axis2/trunk/c/neethi/include/rp_defines.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/rp_defines.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/rp_defines.h (original)
+++ webservices/axis2/trunk/c/neethi/include/rp_defines.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Copyright 2004,2005 The Apache Software Foundation.
  *
@@ -44,13 +45,13 @@
 #define RP_ENCRYPTED_PARTS "EncryptedParts"
 #define RP_ENCRYPTED_ELEMENTS "EncryptedElements"
 #define RP_SIGNED_ITEMS "SignedItems"
-#define RP_ENCRYPTED_ITEMS "EncryptedItems"    
+#define RP_ENCRYPTED_ITEMS "EncryptedItems"
 
 #define RP_BODY "Body"
 #define RP_HEADER "Header"
 #define RP_NAME "Name"
 #define RP_NAMESPACE "Namespace"
-#define RP_ELEMENT "Element"    
+#define RP_ELEMENT "Element"
 
 #define RP_XPATH "XPath"
 #define RP_XPATH_VERSION "XPathVersion"
@@ -180,7 +181,7 @@
 #define RP_CERTIFICATE "Certificate"
 #define RP_PRIVATE_KEY "PrivateKey"
 #define RP_TIME_TO_LIVE "TimeToLive"
-#define RP_RD "ReplayDetection"    
+#define RP_RD "ReplayDetection"
 
 #define RP_SP_NS "http://schemas.xmlsoap.org/ws/2005/07/securitypolicy"
 #define RP_SECURITY_NS "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"

Modified: webservices/axis2/trunk/c/neethi/include/rp_element.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/rp_element.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/rp_element.h (original)
+++ webservices/axis2/trunk/c/neethi/include/rp_element.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Copyright 2004,2005 The Apache Software Foundation.
  *
@@ -32,29 +33,35 @@
     typedef struct rp_element_t rp_element_t;
 
     AXIS2_EXTERN rp_element_t *AXIS2_CALL
-    rp_element_create(const axutil_env_t *env);
+    rp_element_create(
+        const axutil_env_t * env);
 
     AXIS2_EXTERN void AXIS2_CALL
-    rp_element_free(rp_element_t *element,
-                   const axutil_env_t *env);
+    rp_element_free(
+        rp_element_t * element,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_char_t *AXIS2_CALL
-    rp_element_get_name(rp_element_t *element,
-                       const axutil_env_t *env);
+    rp_element_get_name(
+        rp_element_t * element,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    rp_element_set_name(rp_element_t *element,
-                       const axutil_env_t *env,
-                       axis2_char_t *name);
+    rp_element_set_name(
+        rp_element_t * element,
+        const axutil_env_t * env,
+        axis2_char_t * name);
 
     AXIS2_EXTERN axis2_char_t *AXIS2_CALL
-    rp_element_get_namespace(rp_element_t *element,
-                            const axutil_env_t *env);
+    rp_element_get_namespace(
+        rp_element_t * element,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    rp_element_set_namespace(rp_element_t *element,
-                            const axutil_env_t *env,
-                            axis2_char_t *nspace);
+    rp_element_set_namespace(
+        rp_element_t * element,
+        const axutil_env_t * env,
+        axis2_char_t * nspace);
 
 #ifdef __cplusplus
 }

Modified: webservices/axis2/trunk/c/neethi/include/rp_header.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/rp_header.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/rp_header.h (original)
+++ webservices/axis2/trunk/c/neethi/include/rp_header.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Copyright 2004,2005 The Apache Software Foundation.
  *
@@ -32,29 +33,35 @@
     typedef struct rp_header_t rp_header_t;
 
     AXIS2_EXTERN rp_header_t *AXIS2_CALL
-    rp_header_create(const axutil_env_t *env);
+    rp_header_create(
+        const axutil_env_t * env);
 
     AXIS2_EXTERN void AXIS2_CALL
-    rp_header_free(rp_header_t *header,
-                   const axutil_env_t *env);
+    rp_header_free(
+        rp_header_t * header,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_char_t *AXIS2_CALL
-    rp_header_get_name(rp_header_t *header,
-                       const axutil_env_t *env);
+    rp_header_get_name(
+        rp_header_t * header,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    rp_header_set_name(rp_header_t *header,
-                       const axutil_env_t *env,
-                       axis2_char_t *name);
+    rp_header_set_name(
+        rp_header_t * header,
+        const axutil_env_t * env,
+        axis2_char_t * name);
 
     AXIS2_EXTERN axis2_char_t *AXIS2_CALL
-    rp_header_get_namespace(rp_header_t *header,
-                            const axutil_env_t *env);
+    rp_header_get_namespace(
+        rp_header_t * header,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    rp_header_set_namespace(rp_header_t *header,
-                            const axutil_env_t *env,
-                            axis2_char_t *nspace);
+    rp_header_set_namespace(
+        rp_header_t * header,
+        const axutil_env_t * env,
+        axis2_char_t * nspace);
 
 #ifdef __cplusplus
 }

Modified: webservices/axis2/trunk/c/neethi/include/rp_https_token.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/rp_https_token.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/rp_https_token.h (original)
+++ webservices/axis2/trunk/c/neethi/include/rp_https_token.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Copyright 2004,2005 The Apache Software Foundation.
  *
@@ -32,44 +33,53 @@
     typedef struct rp_https_token_t rp_https_token_t;
 
     AXIS2_EXTERN rp_https_token_t *AXIS2_CALL
-    rp_https_token_create(const axutil_env_t *env);
+    rp_https_token_create(
+        const axutil_env_t * env);
 
     AXIS2_EXTERN void AXIS2_CALL
-    rp_https_token_free(rp_https_token_t *https_token,
-                        const axutil_env_t *env);
+    rp_https_token_free(
+        rp_https_token_t * https_token,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_char_t *AXIS2_CALL
-    rp_https_token_get_inclusion(rp_https_token_t *https_token,
-                                 const axutil_env_t *env);
+    rp_https_token_get_inclusion(
+        rp_https_token_t * https_token,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    rp_https_token_set_inclusion(rp_https_token_t *https_token,
-                                 const axutil_env_t *env,
-                                 axis2_char_t *inclusion);
+    rp_https_token_set_inclusion(
+        rp_https_token_t * https_token,
+        const axutil_env_t * env,
+        axis2_char_t * inclusion);
 
     AXIS2_EXTERN axis2_bool_t AXIS2_CALL
-    rp_https_token_get_derivedkeys(rp_https_token_t *https_token,
-                                   const axutil_env_t *env);
+    rp_https_token_get_derivedkeys(
+        rp_https_token_t * https_token,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    rp_https_token_set_derivedkeys(rp_https_token_t *https_token,
-                                   const axutil_env_t *env,
-                                   axis2_bool_t derivedkeys);
+    rp_https_token_set_derivedkeys(
+        rp_https_token_t * https_token,
+        const axutil_env_t * env,
+        axis2_bool_t derivedkeys);
 
     AXIS2_EXTERN axis2_bool_t AXIS2_CALL
-    rp_https_token_get_require_client_certificate(rp_https_token_t *https_token,
-            const axutil_env_t *env);
+
+    rp_https_token_get_require_client_certificate(
+        rp_https_token_t * https_token,
+        const axutil_env_t * env);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
-    rp_https_token_set_require_client_certificate(rp_https_token_t *https_token,
-            const axutil_env_t *env,
-            axis2_bool_t require_client_certificate);
+
+    rp_https_token_set_require_client_certificate(
+        rp_https_token_t * https_token,
+        const axutil_env_t * env,
+        axis2_bool_t require_client_certificate);
 
     AXIS2_EXTERN axis2_status_t AXIS2_CALL
     rp_https_token_increment_ref(
-            rp_https_token_t *https_token,
-            const axutil_env_t *env);
-    
+        rp_https_token_t * https_token,
+        const axutil_env_t * env);
 
 #ifdef __cplusplus
 }

Modified: webservices/axis2/trunk/c/neethi/include/rp_https_token_builder.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/rp_https_token_builder.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/rp_https_token_builder.h (original)
+++ webservices/axis2/trunk/c/neethi/include/rp_https_token_builder.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Copyright 2004,2005 The Apache Software Foundation.
  *
@@ -34,10 +35,10 @@
 
     AXIS2_EXTERN neethi_assertion_t *AXIS2_CALL
     rp_https_token_builder_build(
-        const axutil_env_t *env,
-        axiom_node_t *node,
-        axiom_element_t *element);
- 
+        const axutil_env_t * env,
+        axiom_node_t * node,
+        axiom_element_t * element);
+
 #ifdef __cplusplus
 }
 #endif

Modified: webservices/axis2/trunk/c/neethi/include/rp_includes.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/rp_includes.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/rp_includes.h (original)
+++ webservices/axis2/trunk/c/neethi/include/rp_includes.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -33,10 +34,9 @@
 #include <axutil_qname.h>
 #include <rp_defines.h>
 
-
 /**
 * @file rp_includes.h
-* @brief includes most useful headers for RP 
+* @brief includes most useful headers for RP
 */
 #ifdef __cplusplus
 extern "C"
@@ -49,4 +49,4 @@
 }
 #endif
 
-#endif /*RP_INCLUDES_H */
+#endif                          /*RP_INCLUDES_H */

Modified: webservices/axis2/trunk/c/neethi/include/rp_initiator_token_builder.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/include/rp_initiator_token_builder.h?rev=580289&r1=580288&r2=580289&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/include/rp_initiator_token_builder.h (original)
+++ webservices/axis2/trunk/c/neethi/include/rp_initiator_token_builder.h Fri Sep 28 03:29:16 2007
@@ -1,3 +1,4 @@
+
 /*
  * Copyright 2004,2005 The Apache Software Foundation.
  *
@@ -33,11 +34,11 @@
 #endif
 
     AXIS2_EXTERN neethi_assertion_t *AXIS2_CALL
+
     rp_initiator_token_builder_build(
-        const axutil_env_t *env,
-        axiom_node_t *node,
-        axiom_element_t *element);
- 
+        const axutil_env_t * env,
+        axiom_node_t * node,
+        axiom_element_t * element);
 
 #ifdef __cplusplus
 }



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