transport in description
[description]


Files

file  axis2_transport_in_desc.h
 Axis2 description transport in interface.

Classes

struct  axis2_transport_in_desc_ops
struct  axis2_transport_in_desc

Defines

#define AXIS2_TRANSPORT_IN_DESC_FREE(transport_in_desc, env)   ((transport_in_desc)->ops->free (transport_in_desc, env))
#define AXIS2_TRANSPORT_IN_DESC_GET_QNAME(transport_in_desc, env)   ((transport_in_desc)->ops->get_qname (transport_in_desc, env))
#define AXIS2_TRANSPORT_IN_DESC_SET_QNAME(transport_in_desc, env, qname)   ((transport_in_desc)->ops->set_qname (transport_in_desc, env, qname))
#define AXIS2_TRANSPORT_IN_DESC_GET_IN_FLOW(transport_in_desc, env)   ((transport_in_desc)->ops->get_in_flow (transport_in_desc, env))
#define AXIS2_TRANSPORT_IN_DESC_SET_IN_FLOW(transport_in_desc, env, in_flow)   ((transport_in_desc)->ops->set_in_flow (transport_in_desc, env, in_flow))
#define AXIS2_TRANSPORT_IN_DESC_GET_FAULT_IN_FLOW(transport_in_desc, env)   ((transport_in_desc)->ops->get_fault_in_flow (transport_in_desc, env))
#define AXIS2_TRANSPORT_IN_DESC_SET_FAULT_IN_FLOW(transport_in_desc, env, fault_in_flow)   ((transport_in_desc)->ops->set_fault_in_flow (transport_in_desc, env, fault_in_flow))
#define AXIS2_TRANSPORT_IN_DESC_GET_RECV(transport_in_desc, env)   ((transport_in_desc)->ops->get_recv (transport_in_desc, env))
#define AXIS2_TRANSPORT_IN_DESC_SET_RECV(transport_in_desc, env, recv)   ((transport_in_desc)->ops->set_recv (transport_in_desc, env, recv))
#define AXIS2_TRANSPORT_IN_DESC_GET_IN_PHASE(transport_in_desc, env)   ((transport_in_desc)->ops->get_in_phase (transport_in_desc, env))
#define AXIS2_TRANSPORT_IN_DESC_SET_IN_PHASE(transport_in_desc, env, in_phase)   ((transport_in_desc)->ops->set_in_phase (transport_in_desc, env, in_phase))
#define AXIS2_TRANSPORT_IN_DESC_GET_FAULT_PHASE(transport_in_desc, env)   ((transport_in_desc)->ops->get_fault_phase (transport_in_desc, env))
#define AXIS2_TRANSPORT_IN_DESC_SET_FAULT_PHASE(transport_in_desc, env, fault_phase)   ((transport_in_desc)->ops->set_fault_phase (transport_in_desc, env, fault_phase))
#define AXIS2_TRANSPORT_IN_DESC_ADD_PARAM(transport_in_desc, env, param)   ((transport_in_desc)->ops->add_param (transport_in_desc, env, param))
#define AXIS2_TRANSPORT_IN_DESC_GET_PARAM(transport_in_desc, env, param_name)   ((transport_in_desc)->ops->get_param (transport_in_desc, env, param_name))
#define AXIS2_TRANSPORT_IN_DESC_IS_PARAM_LOCKED(transport_in_desc, env, param_name)   ((transport_in_desc)->ops->is_param_locked (transport_in_desc, env, param_name))

Typedefs

typedef axis2_transport_in_desc axis2_transport_in_desc_t
typedef axis2_transport_in_desc_ops axis2_transport_in_desc_ops_t

Functions

AXIS2_EXTERN axis2_transport_in_desc_taxis2_transport_in_desc_create_with_qname (const axis2_env_t *env, const axis2_qname_t *qname)
axis2_status_t axis2_transport_in_desc_free_void_arg (void *transport_in, const axis2_env_t *env)

Detailed Description

transport in description represents a transport receiver configured in Axis2 configuration. There can be multiple transport receivers configured in axis2.xml file and each of them will be represented with a transport in description instance. deployment engine takes care of creating and instantiating transport in descriptions. transport in description encapsulates flows related to the transport in and also holds a reference to related transport receiver.

Define Documentation

#define AXIS2_TRANSPORT_IN_DESC_ADD_PARAM ( transport_in_desc,
env,
param   )     ((transport_in_desc)->ops->add_param (transport_in_desc, env, param))

Adds parameter.

See also:
axis2_transport_in_desc_ops::add_param

#define AXIS2_TRANSPORT_IN_DESC_FREE ( transport_in_desc,
env   )     ((transport_in_desc)->ops->free (transport_in_desc, env))

Frees transport in description.

See also:
axis2_transport_in_desc_ops::free

#define AXIS2_TRANSPORT_IN_DESC_GET_FAULT_IN_FLOW ( transport_in_desc,
env   )     ((transport_in_desc)->ops->get_fault_in_flow (transport_in_desc, env))

Gets fault flow.

See also:
axis2_transport_in_desc_ops::get_fault_in_flow

#define AXIS2_TRANSPORT_IN_DESC_GET_FAULT_PHASE ( transport_in_desc,
env   )     ((transport_in_desc)->ops->get_fault_phase (transport_in_desc, env))

Gets fault phase.

See also:
axis2_transport_in_desc_ops::get_fault_phase

#define AXIS2_TRANSPORT_IN_DESC_GET_IN_FLOW ( transport_in_desc,
env   )     ((transport_in_desc)->ops->get_in_flow (transport_in_desc, env))

Gets in flow.

See also:
axis2_transport_in_desc_ops::get_in_flow

#define AXIS2_TRANSPORT_IN_DESC_GET_IN_PHASE ( transport_in_desc,
env   )     ((transport_in_desc)->ops->get_in_phase (transport_in_desc, env))

Gets in phase.

See also:
axis2_transport_in_desc_ops::get_in_phase

#define AXIS2_TRANSPORT_IN_DESC_GET_PARAM ( transport_in_desc,
env,
param_name   )     ((transport_in_desc)->ops->get_param (transport_in_desc, env, param_name))

Gets named parameter.

See also:
axis2_transport_in_desc_ops::get_param

#define AXIS2_TRANSPORT_IN_DESC_GET_QNAME ( transport_in_desc,
env   )     ((transport_in_desc)->ops->get_qname (transport_in_desc, env))

Gets QName.

See also:
axis2_transport_in_desc_ops::get_qname

#define AXIS2_TRANSPORT_IN_DESC_GET_RECV ( transport_in_desc,
env   )     ((transport_in_desc)->ops->get_recv (transport_in_desc, env))

Gets transport receiver.

See also:
axis2_transport_in_desc_ops::get_recv

#define AXIS2_TRANSPORT_IN_DESC_IS_PARAM_LOCKED ( transport_in_desc,
env,
param_name   )     ((transport_in_desc)->ops->is_param_locked (transport_in_desc, env, param_name))

Checks if the named parameter is locked.

See also:
axis2_transport_in_desc_ops::is_param_locked

#define AXIS2_TRANSPORT_IN_DESC_SET_FAULT_IN_FLOW ( transport_in_desc,
env,
fault_in_flow   )     ((transport_in_desc)->ops->set_fault_in_flow (transport_in_desc, env, fault_in_flow))

Sets fault flow.

See also:
axis2_transport_in_desc_ops::set_fault_in_flow

#define AXIS2_TRANSPORT_IN_DESC_SET_FAULT_PHASE ( transport_in_desc,
env,
fault_phase   )     ((transport_in_desc)->ops->set_fault_phase (transport_in_desc, env, fault_phase))

Sets fault phase.

See also:
axis2_transport_in_desc_ops::set_fault_phase

#define AXIS2_TRANSPORT_IN_DESC_SET_IN_FLOW ( transport_in_desc,
env,
in_flow   )     ((transport_in_desc)->ops->set_in_flow (transport_in_desc, env, in_flow))

Sets in flow.

See also:
axis2_transport_in_desc_ops::set_in_flow

#define AXIS2_TRANSPORT_IN_DESC_SET_IN_PHASE ( transport_in_desc,
env,
in_phase   )     ((transport_in_desc)->ops->set_in_phase (transport_in_desc, env, in_phase))

Sets in phase.

See also:
axis2_transport_in_desc_ops::set_in_phase

#define AXIS2_TRANSPORT_IN_DESC_SET_QNAME ( transport_in_desc,
env,
qname   )     ((transport_in_desc)->ops->set_qname (transport_in_desc, env, qname))

Sets QName.

See also:
axis2_transport_in_desc_ops::set_qname

#define AXIS2_TRANSPORT_IN_DESC_SET_RECV ( transport_in_desc,
env,
recv   )     ((transport_in_desc)->ops->set_recv (transport_in_desc, env, recv))

Sets transport receiver.

See also:
axis2_transport_in_desc_ops::set_recv


Typedef Documentation

typedef struct axis2_transport_in_desc_ops axis2_transport_in_desc_ops_t

Type name for struct axis2_transport_in_desc_ops

typedef struct axis2_transport_in_desc axis2_transport_in_desc_t

Type name for struct axis2_transport_in_desc


Function Documentation

AXIS2_EXTERN axis2_transport_in_desc_t* axis2_transport_in_desc_create_with_qname ( const axis2_env_t env,
const axis2_qname_t *  qname 
)

Creates transport in description with given QName.

Parameters:
env pointer to environment struct
qname pointer to QName
Returns:
pointer to newly created phase holder

axis2_status_t axis2_transport_in_desc_free_void_arg ( void *  transport_in,
const axis2_env_t env 
)

Frees transport in description given as a void parameter.

Parameters:
transport_in pointer to transport in description as a void pointer
env pointer to environment struct
Returns:
AXIS2_SUCCESS on success, else AXIS2_FAILURE


Generated on Tue Oct 3 20:48:11 2006 for Axis2/C by  doxygen 1.4.7