axis2_svc_grp.h

Go to the documentation of this file.
00001 /*
00002  * Licensed to the Apache Software Foundation (ASF) under one or more
00003  * contributor license agreements.  See the NOTICE file distributed with
00004  * this work for additional information regarding copyright ownership.
00005  * The ASF licenses this file to You under the Apache License, Version 2.0
00006  * (the "License"); you may not use this file except in compliance with
00007  * the License.  You may obtain a copy of the License at
00008  *
00009  *      http://www.apache.org/licenses/LICENSE-2.0
00010  *
00011  * Unless required by applicable law or agreed to in writing, software
00012  * distributed under the License is distributed on an "AS IS" BASIS,
00013  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00014  * See the License for the specific language governing permissions and
00015  * limitations under the License.
00016  */
00017 
00018 #ifndef AXIS2_SVC_GRP_H
00019 #define AXIS2_SVC_GRP_H
00020 
00047 #include <axutil_param_container.h>
00048 #include <axis2_desc.h>
00049 #include <axis2_svc.h>
00050 #include <axis2_svc_grp_ctx.h>
00051 
00052 #ifdef __cplusplus
00053 extern "C"
00054 {
00055 #endif
00056 
00058     typedef struct axis2_svc_grp axis2_svc_grp_t;
00059 
00060     struct axis2_svc;
00061     struct axis2_svc_grp_ctx;
00062 
00069     AXIS2_EXTERN void AXIS2_CALL
00070     axis2_svc_grp_free(axis2_svc_grp_t *svc_grp,
00071         const axutil_env_t *env);
00072 
00080     AXIS2_EXTERN axis2_status_t AXIS2_CALL
00081     axis2_svc_grp_set_name(axis2_svc_grp_t *svc_grp,
00082         const axutil_env_t *env,
00083         const axis2_char_t *svc_grp_name);
00084 
00091     AXIS2_EXTERN const axis2_char_t *AXIS2_CALL
00092     axis2_svc_grp_get_name(const axis2_svc_grp_t *svc_grp,
00093         const axutil_env_t *env) ;
00094 
00103     AXIS2_EXTERN axis2_status_t AXIS2_CALL
00104     axis2_svc_grp_add_svc(axis2_svc_grp_t *svc_grp,
00105         const axutil_env_t *env,
00106         struct axis2_svc *svc) ;
00107 
00116     AXIS2_EXTERN struct axis2_svc *AXIS2_CALL
00117     axis2_svc_grp_get_svc(const axis2_svc_grp_t *svc_grp,
00118         const axutil_env_t *env,
00119         const axutil_qname_t *svc_qname);
00120 
00128     AXIS2_EXTERN axutil_hash_t *AXIS2_CALL
00129     axis2_svc_grp_get_all_svcs(const axis2_svc_grp_t *svc_grp,
00130         const axutil_env_t *env);
00131 
00139     AXIS2_EXTERN axis2_status_t AXIS2_CALL
00140     axis2_svc_grp_remove_svc(axis2_svc_grp_t *svc_grp,
00141         const axutil_env_t *env,
00142         const axutil_qname_t *svc_qname);
00143 
00152     AXIS2_EXTERN axis2_status_t AXIS2_CALL
00153     axis2_svc_grp_add_param(axis2_svc_grp_t *svc_grp,
00154         const axutil_env_t *env,
00155         axutil_param_t *param);
00156 
00165     AXIS2_EXTERN axutil_param_t *AXIS2_CALL
00166     axis2_svc_grp_get_param(const axis2_svc_grp_t *svc_grp,
00167         const axutil_env_t *env,
00168         const axis2_char_t *name);
00169 
00177     AXIS2_EXTERN axutil_array_list_t *AXIS2_CALL
00178     axis2_svc_grp_get_all_params(const axis2_svc_grp_t *svc_grp,
00179         const axutil_env_t *env);
00180 
00188     AXIS2_EXTERN axis2_bool_t AXIS2_CALL
00189     axis2_svc_grp_is_param_locked(axis2_svc_grp_t *svc_grp,
00190         const axutil_env_t *env,
00191         const axis2_char_t *param_name);
00192 
00200     AXIS2_EXTERN axis2_status_t AXIS2_CALL
00201     axis2_svc_grp_add_module_qname(axis2_svc_grp_t *svc_grp,
00202         const axutil_env_t *env,
00203         const axutil_qname_t *module_qname);
00204 
00212     AXIS2_EXTERN struct axis2_conf *AXIS2_CALL
00213     axis2_svc_grp_get_parent(const axis2_svc_grp_t *svc_grp,
00214         const axutil_env_t *env);
00215 
00224     AXIS2_EXTERN axis2_status_t AXIS2_CALL
00225     axis2_svc_grp_set_parent(axis2_svc_grp_t *svc_grp,
00226         const axutil_env_t *env,
00227         struct axis2_conf *parent);
00228 
00238     AXIS2_EXTERN axis2_status_t AXIS2_CALL
00239     axis2_svc_grp_engage_module(axis2_svc_grp_t *svc_grp,
00240         const axutil_env_t *env,
00241         const axutil_qname_t *module_qname);
00242 
00250     AXIS2_EXTERN axutil_array_list_t *AXIS2_CALL
00251     axis2_svc_grp_get_all_module_qnames(const axis2_svc_grp_t *svc_grp,
00252         const axutil_env_t *env);
00253 
00261     AXIS2_EXTERN axis2_status_t AXIS2_CALL
00262     axis2_svc_grp_add_module_ref(axis2_svc_grp_t *svc_grp,
00263         const axutil_env_t *env,
00264         const axutil_qname_t *moduleref);
00265 
00273     AXIS2_EXTERN axutil_array_list_t *AXIS2_CALL
00274     axis2_svc_grp_get_all_module_refs(const axis2_svc_grp_t *svc_grp,
00275         const axutil_env_t *env);
00276 
00286     AXIS2_EXTERN struct axis2_svc_grp_ctx *AXIS2_CALL
00287     axis2_svc_grp_get_svc_grp_ctx(const axis2_svc_grp_t *svc_grp,
00288         const axutil_env_t *env,
00289         struct axis2_conf_ctx *parent);
00290 
00291     AXIS2_EXTERN axutil_param_container_t *AXIS2_CALL
00292     axis2_svc_grp_get_param_container(const axis2_svc_grp_t *svc_grp,
00293         const axutil_env_t *env);
00294 
00300     AXIS2_EXTERN axis2_svc_grp_t *AXIS2_CALL
00301     axis2_svc_grp_create(const axutil_env_t *env);
00302 
00310     AXIS2_EXTERN axis2_svc_grp_t *AXIS2_CALL
00311     axis2_svc_grp_create_with_conf(const axutil_env_t *env,
00312         struct axis2_conf *conf);
00313 
00320     AXIS2_EXTERN axis2_desc_t *AXIS2_CALL
00321     axis2_svc_grp_get_base(const axis2_svc_grp_t *svc_grp,
00322         const axutil_env_t *env);
00323 
00324 #ifdef __cplusplus
00325 }
00326 #endif
00327 #endif                          /* AXIS2_SVC_GRP_H  */

Generated on Wed Sep 26 09:49:21 2007 for Axis2/C by  doxygen 1.4.6