include/sandesha2_seq_property_mgr.h (111 lines of code) (raw):
/*
 * Copyright 2004,2005 The Apache Software Foundation.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
#ifndef SANDESHA2_SEQ_PROPERTY_MGR_H
#define SANDESHA2_SEQ_PROPERTY_MGR_H
/**
 * @file sandesha2_seq_property_mgr.h
 * @brief Sandesha In Memory Sequence Property Manager Interface
 */
#include <axutil_allocator.h>
#include <axutil_env.h>
#include <axutil_error.h>
#include <axutil_string.h>
#include <axutil_utils.h>
#include <axis2_ctx.h>
#include <axutil_array_list.h>
#include <sandesha2_seq_property_bean.h>
#ifdef __cplusplus
extern "C"
{
#endif
typedef struct sandesha2_seq_property_mgr sandesha2_seq_property_mgr_t;
typedef struct sandesha2_seq_property_mgr_ops sandesha2_seq_property_mgr_ops_t;
/** @defgroup sandesha2_seq_property_mgr In Memory Sequence Property Manager
  * @ingroup sandesha2
  * @{
  */
AXIS2_DECLARE_DATA struct sandesha2_seq_property_mgr_ops
{
   /** 
     * Deallocate memory
     * @return status code
     */
    void (AXIS2_CALL * 
            free)(
                sandesha2_seq_property_mgr_t *seq_property,
                const axutil_env_t *envv);
    axis2_bool_t (AXIS2_CALL *
            insert)(
                sandesha2_seq_property_mgr_t *seq_property,
                const axutil_env_t *env,
                sandesha2_seq_property_bean_t *bean);
    axis2_bool_t (AXIS2_CALL *
            remove)(
                sandesha2_seq_property_mgr_t *seq_property,
                const axutil_env_t *env,
                axis2_char_t *seq_id,
                axis2_char_t *name);
    sandesha2_seq_property_bean_t *(AXIS2_CALL *
            retrieve)(
                sandesha2_seq_property_mgr_t *seq_property,
                const axutil_env_t *env,
                const axis2_char_t *seq_id,
                const axis2_char_t *name);
    axis2_bool_t (AXIS2_CALL *
            update)(
                sandesha2_seq_property_mgr_t *seq_property,
                const axutil_env_t *env,
                sandesha2_seq_property_bean_t *bean);
    axutil_array_list_t *(AXIS2_CALL *
            find)(
                sandesha2_seq_property_mgr_t *seq_property,
                const axutil_env_t *env,
                sandesha2_seq_property_bean_t *bean);
    sandesha2_seq_property_bean_t *(AXIS2_CALL *
            find_unique)(
                sandesha2_seq_property_mgr_t *seq_property,
                const axutil_env_t *env,
                sandesha2_seq_property_bean_t *bean);
    axutil_array_list_t *(AXIS2_CALL *
            retrieve_all)(
                sandesha2_seq_property_mgr_t *seq_property,
                const axutil_env_t *env);
};
AXIS2_DECLARE_DATA struct sandesha2_seq_property_mgr
{
    sandesha2_seq_property_mgr_ops_t ops;
};
AXIS2_EXTERN sandesha2_seq_property_mgr_t * AXIS2_CALL
sandesha2_seq_property_mgr_create(
    const axutil_env_t *env,
    axis2_char_t *dbname);
void AXIS2_CALL 
sandesha2_seq_property_mgr_free(
    sandesha2_seq_property_mgr_t *seq_property,
    const axutil_env_t *envv);
axis2_bool_t AXIS2_CALL
sandesha2_seq_property_mgr_insert(
    sandesha2_seq_property_mgr_t *seq_property,
    const axutil_env_t *env,
    sandesha2_seq_property_bean_t *bean);
axis2_bool_t AXIS2_CALL
sandesha2_seq_property_mgr_remove(
    sandesha2_seq_property_mgr_t *seq_property,
    const axutil_env_t *env,
    axis2_char_t *seq_id,
    axis2_char_t *name);
sandesha2_seq_property_bean_t *AXIS2_CALL
sandesha2_seq_property_mgr_retrieve(
    sandesha2_seq_property_mgr_t *seq_property,
    const axutil_env_t *env,
    const axis2_char_t *seq_id,
    const axis2_char_t *name);
axis2_bool_t AXIS2_CALL
sandesha2_seq_property_mgr_update(
    sandesha2_seq_property_mgr_t *seq_property,
    const axutil_env_t *env,
    sandesha2_seq_property_bean_t *bean);
axutil_array_list_t *AXIS2_CALL
sandesha2_seq_property_mgr_find(
    sandesha2_seq_property_mgr_t *seq_property,
    const axutil_env_t *env,
    sandesha2_seq_property_bean_t *bean);
sandesha2_seq_property_bean_t *AXIS2_CALL
sandesha2_seq_property_mgr_find_unique(
    sandesha2_seq_property_mgr_t *seq_property,
    const axutil_env_t *env,
    sandesha2_seq_property_bean_t *bean);
axutil_array_list_t *AXIS2_CALL
sandesha2_seq_property_mgr_retrieve_all(
    sandesha2_seq_property_mgr_t *seq_property,
    const axutil_env_t *env);
/** @} */
#ifdef __cplusplus
}
#endif
#endif /* SANDESHA2_SEQ_PROPERTY_MGR_H */