blob: 34ab0cd78cdc685b901eecc78a0d0f5ed1751775 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 NEETHI_ENGINE_H
#define NEETHI_ENGINE_H
/**
* @file neethi_engine.h
* @contains neethi_policy creation logic.
*/
#include <axis2_defines.h>
#include <axutil_env.h>
#include <neethi_includes.h>
#include <neethi_operator.h>
#include <neethi_policy.h>
#include <neethi_all.h>
#include <neethi_exactlyone.h>
#include <neethi_reference.h>
#include <neethi_registry.h>
#include <neethi_assertion.h>
#ifdef __cplusplus
extern "C"
{
#endif
AXIS2_EXTERN neethi_policy_t *AXIS2_CALL
neethi_engine_get_policy(const axutil_env_t *env,
axiom_node_t *node,
axiom_element_t *element);
AXIS2_EXTERN neethi_policy_t *AXIS2_CALL
neethi_engine_get_normalize(const axutil_env_t *env,
axis2_bool_t deep,
neethi_policy_t *neethi_policy);
AXIS2_EXTERN neethi_policy_t *AXIS2_CALL
neethi_engine_normalize(const axutil_env_t *env,
neethi_policy_t *neethi_policy,
neethi_registry_t *registry,
axis2_bool_t deep);
AXIS2_EXTERN neethi_policy_t *AXIS2_CALL
neethi_engine_merge(const axutil_env_t *env,
neethi_policy_t *neethi_policy1,
neethi_policy_t *neethi_policy2);
AXIS2_EXTERN axiom_node_t *AXIS2_CALL
neethi_engine_serialize(neethi_policy_t *policy,
const axutil_env_t *env);
/** @} */
#ifdef __cplusplus
}
#endif
#endif /* NEETHI_ENGINE_H */