blob: 4ec02c325911eeff5c6d75c0a19571ddb37e472d [file] [log] [blame]
/*
* Copyright 2003-2004 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.
*/
/*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*
*
*
*
* @author Roshan Weerasuriya (roshan@opensource.lk, roshanw@jkcsworld.com)
* @author Samisa Abeysinghe (sabeysinghe@virtusa.com)
*
*/
// !!! This include file must be first thing in file !!!
#include "../platforms/PlatformAutoSense.hpp"
#include <axis/GDefine.hpp>
#include "CharacterElement.h"
#include "SoapSerializer.h"
#include "../common/AxisTrace.h"
AXIS_CPP_NAMESPACE_START
CharacterElement::CharacterElement():BasicNode( NULL, CHARACTER_NODE)
{
}
CharacterElement::CharacterElement(const AxisChar* pachValue):BasicNode(pachValue, CHARACTER_NODE)
{
}
CharacterElement::CharacterElement(const CharacterElement& rCopy):BasicNode(rCopy)
{}
BasicNode* CharacterElement::clone()
{
return new CharacterElement(*this);
}
CharacterElement::~CharacterElement()
{
}
NODE_TYPE CharacterElement::getNodeType() const
{
return m_iNodeType;
}
int CharacterElement::serialize(SoapSerializer& pSZ)
{
if (m_pachValue != NULL)
{
pSZ.serialize(m_pachValue, NULL);
return AXIS_SUCCESS;
}
else
{
return AXIS_FAIL;
}
}
const AxisChar* CharacterElement::getValue() const
{
return m_pachValue;
}
int CharacterElement::setValue(const AxisChar* pachValue)
{
if (pachValue !=NULL){
m_pachValue = new AxisChar[strlen(pachValue)+1];
strcpy(m_pachValue, pachValue);
return AXIS_SUCCESS;
}
else
{
return AXIS_FAIL;
}
}
bool CharacterElement::operator == ( const CharacterElement &objChEle)
{
if (strcmp(objChEle.m_pachValue , m_pachValue) == 0)
{
return true;
}
else
{
return false;
}
}
AXIS_CPP_NAMESPACE_END