blob: b65b2a27ea0bdaa5f363224a48113374337ee847 [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.
*/
#include <rp_property.h>
#include <rp_symmetric_binding.h>
#include <rp_asymmetric_binding.h>
#include <rp_transport_binding.h>
#include <rp_supporting_tokens.h>
#include <rp_wss10.h>
#include <rp_wss11.h>
struct rp_property_t
{
int type;
void *value;
};
AXIS2_EXTERN rp_property_t *AXIS2_CALL
rp_property_create(const axutil_env_t *env)
{
rp_property_t *property = NULL;
AXIS2_ENV_CHECK(env, NULL);
property = (rp_property_t *) AXIS2_MALLOC (env->allocator,
sizeof (rp_property_t));
if(property == NULL)
{
AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
return NULL;
}
property->type = 0;
property->value = NULL;
return property;
}
AXIS2_EXTERN axis2_status_t AXIS2_CALL
rp_property_free(
rp_property_t *property,
const axutil_env_t *env)
{
AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
if(property)
{
if(property->value)
{
switch(property->type)
{
case RP_TOKEN_USERNAME:
rp_username_token_free((rp_username_token_t *)property->value,env);
property->value = NULL;
break;
case RP_TOKEN_X509:
rp_x509_token_free((rp_x509_token_t *)property->value,env);
property->value = NULL;
break;
case RP_TOKEN_SECURITY_CONTEXT:
rp_security_context_token_free((rp_security_context_token_t *)property->value,env);
property->value = NULL;
break;
case RP_TOKEN_HTTPS:
rp_https_token_free((rp_https_token_t *)property->value,env);
property->value = NULL;
break;
case RP_BINDING_SYMMETRIC:
rp_symmetric_binding_free((rp_symmetric_binding_t *)property->value,env);
property->value = NULL;
break;
case RP_BINDING_ASYMMETRIC:
rp_asymmetric_binding_free((rp_asymmetric_binding_t *)property->value,env);
property->value = NULL;
break;
case RP_BINDING_TRANSPORT:
rp_transport_binding_free((rp_transport_binding_t *)property->value,env);
property->value = NULL;
break;
case RP_SUPPORTING_SIGNED_SUPPORTING:
rp_supporting_tokens_free((rp_supporting_tokens_t *)property->value,env);
property->value = NULL;
break;
case RP_SUPPORTING_SIGNED_ENDORSING_SUPPORTING:
rp_supporting_tokens_free((rp_supporting_tokens_t *)property->value,env);
property->value = NULL;
break;
case RP_WSS_WSS10:
rp_wss10_free((rp_wss10_t *)property->value,env);
property->value = NULL;
break;
case RP_WSS_WSS11:
rp_wss11_free((rp_wss11_t *)property->value,env);
property->value = NULL;
break;
}
}
AXIS2_FREE(env->allocator,property);
}
return AXIS2_SUCCESS;
}
/* Implementations */
AXIS2_EXTERN void *AXIS2_CALL
rp_property_get_value(
rp_property_t *property,
const axutil_env_t *env)
{
AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
return property->value;
}
AXIS2_EXTERN axis2_status_t AXIS2_CALL
rp_property_set_value(rp_property_t *property,
const axutil_env_t *env,
void *value,
int type)
{
AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
AXIS2_PARAM_CHECK(env->error,value,AXIS2_FAILURE);
property->type = type;
property->value =(void *)value;
return AXIS2_SUCCESS;
}
AXIS2_EXTERN int AXIS2_CALL
rp_property_get_type(
rp_property_t *property,
const axutil_env_t *env)
{
AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
return property->type;
}