Main Page | Modules | Data Structures | Data Fields

Complex type: ds_SignedInfoType
[XML Types]

Data Structures

Defines

Typedefs

Functions

Variables


Define Documentation

#define DS_SIGNEDINFOTYPE_NS   "http://www.w3.org/2000/09/xmldsig#"
 

Namespace of the ds_SignedInfoType complex type.

#define DS_SIGNEDINFOTYPE_LOCAL   "SignedInfoType"
 

Local part of the QName of the ds_SignedInfoType complex type.


Typedef Documentation

typedef struct ds_SignedInfoType_s ds_SignedInfoType
 

The ds_SignedInfoType complex type, which represents the {http://www.w3.org/2000/09/xmldsig#}SignedInfoType element.

typedef ds_SignedInfoType* ds_SignedInfoType_o
 

The ds_SignedInfoType_o complex type, which represents an optional instance of a {http://www.w3.org/2000/09/xmldsig#}SignedInfoType element.

typedef struct ds_SignedInfoType_array_s ds_SignedInfoType_array
 

Array of ds_SignedInfoType elements.

This structure type is used represent an array of ds_SignedInfoType elements.

Arrays are allocated by ds_SignedInfoType_array_init() and freed by calling ds_SignedInfoType_array_destroy(). Elements may be added to an array by calling ds_SignedInfoType_array_push().


Function Documentation

globus_result_t ds_SignedInfoType_init (
     ds_SignedInfoType ** inst )
 

Initialize a ds_SignedInfoType.

Allocates a new ds_SignedInfoType and initializes its contents. When the structure is no longer needed, it should be freed by calling ds_SignedInfoType_destroy().

Parameters:
inst Pointer to set to a newly allocated instance.

void ds_SignedInfoType_destroy (
     ds_SignedInfoType * inst )
 

Destroy a ds_SignedInfoType.

Frees a ds_SignedInfoType. All subelements and attributes will be destroyed (and freed if they are optional).

Parameters:
inst Pointer to the instance to destroy.

globus_result_t ds_SignedInfoType_copy (
     ds_SignedInfoType ** dest,
     const ds_SignedInfoType * src)
 

Copy a ds_SignedInfoType.

Perform a deep copy of a ds_SignedInfoType. The dest structure will be allocated, and then a copy of the contents of src and its subelements and attributes will be made to dest.

Parameters:
dest The ds_SignedInfoType structure to be initialized with a copy of the contents of the src structure.
src Source ds_SignedInfoType to be copied.

globus_result_t ds_SignedInfoType_init_contents (
     ds_SignedInfoType * instance )
 

Initialize the contents of a ds_SignedInfoType.

Initialize the contents of a ds_SignedInfoType. This should be used when the structure is allocated on the stack or by a some allocator besides ds_SignedInfoType_init(). The contents may be freed by calling ds_SignedInfoType_destroy_contents().

Parameters:
instance Pointer to an allocated but uninitialized ds_SignedInfoType.

void ds_SignedInfoType_destroy_contents (
     ds_SignedInfoType * inst )
 

Destroy the contents of a ds_SignedInfoType.

Destroy the subelements and attributes of the given ds_SignedInfoType.

Parameters:
inst Pointer to a ds_SignedInfoType instance to destroy.

globus_result_t ds_SignedInfoType_copy_contents (
     ds_SignedInfoType * dest,
     const ds_SignedInfoType * src)
 

Copy the contents of a ds_SignedInfoType.

Perform a deep copy of the contents of a ds_SignedInfoType. The dest strcuture must be allocated before making this call. A copy of the subelements and attributes of @ src will be made to dest.

Parameters:
dest Structure to be initialized with copies of the contents of src.
src Source ds_SignedInfoType to be copied.

globus_result_t ds_SignedInfoType_deserialize (
     const xsd_QName * element_name,
     ds_SignedInfoType * val,
     globus_soap_message_handle_t message_handle,
     globus_xsd_element_options_t options)
 

Deserialize a ds_SignedInfoType.

Deserialize an element containing a ds_SignedInfoType element.

Parameters:
element_name The name of the element which should enclose the ds_SignedInfoType.
val Pointer to the ds_SignedInfoType which will be initialized with the value of the element.
message_handle The handle to deserialize the element from.
options Deserialization options.

globus_result_t ds_SignedInfoType_deserialize_contents (
     const xsd_QName * element_name,
     ds_SignedInfoType * val,
     globus_soap_message_handle_t message_handle,
     globus_xsd_element_options_t options)
 

Deserialize a ds_SignedInfoType.

Deserialize a ds_SignedInfoType whose enclosing element has already been deserialized.

Parameters:
element_name Ignored.
val Pointer to the ds_SignedInfoType which will be initialized with the value of the current element.
message_handle The handle to deserialize the element from.
options Deserialization options.

globus_result_t ds_SignedInfoType_deserialize_pointer (
     const xsd_QName * element_name,
     ds_SignedInfoType ** instance,
     globus_soap_message_handle_t message_handle,
     globus_xsd_element_options_t options)
 

Deserialize an optional ds_SignedInfoType.

Deserialize the next element if it contains a ds_SignedInfoType.

Parameters:
element_name The name of the element which should enclose the ds_SignedInfoType.
instance Pointer to the ds_SignedInfoType * which will be allocated and initialized with the value of the element if it is present.
message_handle The handle to deserialize the element from.
options Deserialization options.

globus_result_t ds_SignedInfoType_array_init (
     ds_SignedInfoType_array ** inst )
 

Initialize an array of ds_SignedInfoType elements.

Allocates a new array of 0 elements. When this array is no longer used, it should be freed by calling ds_SignedInfoType_array_destroy().

Parameters:
inst Pointer to set to a newly allocated array instance.

void ds_SignedInfoType_array_destroy (
     ds_SignedInfoType_array * inst )
 

Destroy an array of ds_SignedInfoType elements.

Frees an array of ds_SignedInfoType elements. The contents of each element element in the array be destroyed by calling ds_SignedInfoType_destroy_contents().

Parameters:
inst Pointer to array instance to destroy.

globus_result_t ds_SignedInfoType_array_copy (
     ds_SignedInfoType_array ** dest,
     const ds_SignedInfoType_array * src)
 

Copy an array of ds_SignedInfoType elements.

Perform a deep copy of an array of ds_SignedInfoType elements. The dest array will be allocated, and then a copy of the contents of each element in src will be made to dest.

Parameters:
dest Array to be initialized with copies of the elements in src.
src Source array to be copied.

globus_result_t ds_SignedInfoType_array_init_contents (
     ds_SignedInfoType_array * inst )
 

Initialize the contents of an array of ds_SignedInfoType elements.

Initialize the contents of an array of ds_SignedInfoType elements. Used when the array is allocated on the stack or by a some allocator besides ds_SignedInfoType_array_init(). The contents of the array may be freed by calling ds_SignedInfoType_array_destroy_contents().

Parameters:
inst Pointer to an allocated but uninitialized array.

void ds_SignedInfoType_array_destroy_contents (
     ds_SignedInfoType_array * inst )
 

Destroy the contents of an array of ds_SignedInfoType elements.

Destroy the elements in an array of ds_SignedInfoType elements. The contents of each element in the array be destroyed by calling ds_SignedInfoType_destroy_contents() and the array will be reset to be empty.

Parameters:
inst Pointer to array instance to destroy.

globus_result_t ds_SignedInfoType_array_copy_contents (
     ds_SignedInfoType_array * dest,
     const ds_SignedInfoType_array * src)
 

Copy the contents of an array of ds_SignedInfoType elements.

Perform a deep copy of an array of ds_SignedInfoType elements. The dest array must be allocated before making this call. A copy of the contents of each element in src will be made to dest.

Parameters:
dest Array to be initialized with copies of the elements in src.
src Source array to be copied.

struct ds_SignedInfoType_s* ds_SignedInfoType_array_push (
     ds_SignedInfoType_array * array )
 

Append a new ds_SignedInfoType to an array.

Allocate and initialize a new ds_SignedInfoType structure, adding it to the end of the given array.

Parameters:
array Array to be appended to.
Returns:
This function returns the newly allocated element.

globus_result_t ds_SignedInfoType_array_serialize (
     const xsd_QName * element,
     const ds_SignedInfoType_array * array_instance,
     globus_soap_message_handle_t message_handle,
     globus_xsd_element_options_t options)
 

Serialize an array of ds_SignedInfoType elements.

Serialize an element containing an array of ds_SignedInfoType elements.

Parameters:
element The name of the element which will contain the array.
array_instance The array to serialize
message_handle The handle to serialize the element on.
options Serialization options.

globus_result_t ds_SignedInfoType_array_deserialize (
     const xsd_QName * element,
     ds_SignedInfoType_array * array_instance,
     globus_soap_message_handle_t message_handle,
     globus_xsd_element_options_t options)
 

Deserialize an array of ds_SignedInfoType elements.

Deserialize an element containing an array of ds_SignedInfoType elements.

Parameters:
element The name of the element which should enclose the array.
array_instance The array to deserialize into
message_handle The handle to deserialize the element from.
options Deserialization options.


Variable Documentation

xsd_QName ds_SignedInfoType_qname
 

QName of the ds_SignedInfoType complex type.

struct globus_xsd_type_info_s ds_SignedInfoType_info
 

Initial value:

{
    &ds_SignedInfoType_qname,
    ds_SignedInfoType_serialize_wrapper,
    ds_SignedInfoType_deserialize_pointer_wrapper,
    ds_SignedInfoType_init_wrapper,
    ds_SignedInfoType_destroy_wrapper,
    ds_SignedInfoType_copy_wrapper,
    ds_SignedInfoType_init_contents_wrapper,
    ds_SignedInfoType_destroy_contents_wrapper,
    ds_SignedInfoType_copy_contents_wrapper,
    sizeof(ds_SignedInfoType),
    NULL,
    &ds_SignedInfoType_contents_info,
    &ds_SignedInfoType_array_info
}
Type information for serializing and deserializing ds_SignedInfoType elements.

struct globus_xsd_type_info_s ds_SignedInfoType_info
 

Type information for serializing and deserializing ds_SignedInfoType elements.

struct globus_xsd_type_info_s ds_SignedInfoType_array_info
 

Initial value:

{
    &ds_SignedInfoType_qname,
    ds_SignedInfoType_array_serialize_wrapper,
    ds_SignedInfoType_array_deserialize_wrapper,
    ds_SignedInfoType_array_init_wrapper,
    ds_SignedInfoType_array_destroy_wrapper,
    ds_SignedInfoType_array_copy_wrapper,
    ds_SignedInfoType_array_init_contents_wrapper,
    ds_SignedInfoType_array_destroy_contents_wrapper,
    ds_SignedInfoType_array_copy_contents_wrapper,
    sizeof(ds_SignedInfoType),
    ds_SignedInfoType_array_push_wrapper,
    NULL,
    NULL
}
Type information for serializing and deserializing arrays of ds_SignedInfoType elements.

struct globus_xsd_type_info_s ds_SignedInfoType_array_info
 

Type information for serializing and deserializing arrays of ds_SignedInfoType elements.

struct globus_xsd_type_info_s ds_SignedInfoType_contents_info
 

Initial value:

{
    &ds_SignedInfoType_qname,
    ds_SignedInfoType_serialize_contents_wrapper,
    ds_SignedInfoType_deserialize_contents_wrapper,
    ds_SignedInfoType_init_wrapper,
    ds_SignedInfoType_destroy_wrapper,
    ds_SignedInfoType_copy_wrapper,
    ds_SignedInfoType_init_contents_wrapper,
    ds_SignedInfoType_destroy_contents_wrapper,
    ds_SignedInfoType_copy_contents_wrapper,
    sizeof(ds_SignedInfoType),
    NULL,
    NULL,
    NULL
}
Type information for serializing and deserializing the contents of ds_SignedInfoType without surrounding elements.

struct globus_xsd_type_info_s ds_SignedInfoType_contents_info
 

Type information for serializing and deserializing the contents of ds_SignedInfoType without surrounding elements.


about globus | grid research | globus toolkit | software development

Comments? webmaster@globus.org