Sun Java System Access Manager 7.1 C API Reference

Mapping Data Types

The mapping types defined in <am_map.h> are:

am_map_t

Pointer to a map object consisting of key/value entry mappings.

Syntax

#include "am_map.h"
typedef struct am_map *am_map_t;

Members

am_map is an opaque structure with no accessible members.

Memory Concerns

Free the allocated structure by calling am_map_destroy(). See am_map_destroy().

am_map_entry_iter_t

Pointer to an iterator for the entries in a map object.

Syntax

#include "am_map.h"
typedef struct am_map_entry_iter *am_map_entry_iter_t;

Members

am_map_entry_iter is an opaque structure with no accessible members.

am_map_value_iter_t

Pointer to an iterator for the values in a map object associated with a specified key.

Syntax

#include "am_map.h"
typedef struct am_map_value_iter *am_map_value_iter_t;

Members

am_map_value_iter is an opaque structure with no accessible members.