blob: 94bdb101de89767a6cd7c6e0c0e3678c811dedea [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 OXS_BINARY_SECURITY_TOKEN_H
#define OXS_BINARY_SECURITY_TOKEN_H
/**
* @file oxs_token_binary_security_token.h
* @brief Represents <wsse:BinarySecurityToken> element
*/
#include <axis2_util.h>
#include <axis2_defines.h>
#include <axutil_env.h>
#include <axiom_node.h>
#include <axiom_element.h>
#include <axutil_qname.h>
#ifdef __cplusplus
extern "C"
{
#endif
/**
* @defgroup oxs_token_binary_security_token OMXMLSecurity BinarySecurityToken
* @ingroup oxs_token
* @{
*/
/**
* BinarySecurityToken
* \brief Create element <wsse:BinarySecurityToken>
*/
AXIS2_EXTERN axiom_node_t* AXIS2_CALL
oxs_token_build_binary_security_token_element(const axutil_env_t *env,
axiom_node_t *parent,
axis2_char_t* id,
axis2_char_t* encoding_type,
axis2_char_t* value_type,
axis2_char_t* data
);
/** @} */
#ifdef __cplusplus
}
#endif
#endif /* OXS_BINARY_SECURITY_TOKEN_H */