blob: 3005440195038d173b5fc2564e1a20b3e7343b6a [file] [log] [blame]
/*
* Copyright 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
* imitations under the License.
*/
/*
* XSEC
*
* XKMSRequestAbstractTypeImpl := Implementation class for XKMS Request messages
*
* $Id$
*
*/
// XSEC Includes
#include <xsec/framework/XSECDefs.hpp>
#include <xsec/framework/XSECError.hpp>
#include <xsec/xkms/XKMSConstants.hpp>
#include <xercesc/dom/DOM.hpp>
#include <xercesc/dom/DOMNodeList.hpp>
#include "XKMSRequestAbstractTypeImpl.hpp"
#include "XKMSRespondWithImpl.hpp"
XERCES_CPP_NAMESPACE_USE
// --------------------------------------------------------------------------------
// Construct/Destruct
// --------------------------------------------------------------------------------
XKMSRequestAbstractTypeImpl::XKMSRequestAbstractTypeImpl(
const XSECEnv * env) :
XKMSMessageAbstractTypeImpl(env)
{
}
XKMSRequestAbstractTypeImpl::XKMSRequestAbstractTypeImpl(
const XSECEnv * env,
DOMElement * node) :
XKMSMessageAbstractTypeImpl(env, node)
{
}
XKMSRequestAbstractTypeImpl::~XKMSRequestAbstractTypeImpl() {};
// --------------------------------------------------------------------------------
// Load
// --------------------------------------------------------------------------------
void XKMSRequestAbstractTypeImpl::load(void) {
if (mp_messageAbstractTypeElement == NULL) {
// Attempt to load an empty element
throw XSECException(XSECException::RequestAbstractTypeError,
"XKMSRequestAbstractType::load - called on empty DOM");
}
// Get any respond with elements
DOMNodeList * nl = mp_messageAbstractTypeElement->getElementsByTagNameNS(
XKMSConstants::s_unicodeStrURIXKMS,
XKMSConstants::s_tagRespondWith);
if (nl != NULL) {
XKMSRespondWithImpl * rw;
for (int i = 0; i < nl->getLength() ; ++ i) {
XSECnew(rw, XKMSRespondWithImpl(mp_env, (DOMElement *) nl->item(i)));
rw->load();
m_respondWithList.push_back(rw);
}
}
XKMSMessageAbstractTypeImpl::load();
}
// --------------------------------------------------------------------------------
// Create from scratch
// --------------------------------------------------------------------------------
DOMElement * XKMSRequestAbstractTypeImpl::createBlankRequestAbstractType(
const XMLCh * tag,
const XMLCh * service,
const XMLCh * id) {
return XKMSMessageAbstractTypeImpl::createBlankMessageAbstractType(tag, service, id);
}
// --------------------------------------------------------------------------------
// Get interface methods
// --------------------------------------------------------------------------------
const XMLCh * XKMSRequestAbstractTypeImpl::getOriginalRequestId(void) const {
return NULL;
}
void XKMSRequestAbstractTypeImpl::setOriginalRequestId(const XMLCh * id) {
}
// --------------------------------------------------------------------------------
// RespondWith handling
// --------------------------------------------------------------------------------
int XKMSRequestAbstractTypeImpl::getRespondWithSize(void) {
return m_respondWithList.size();
}
XKMSRespondWith * XKMSRequestAbstractTypeImpl::getRespondWithItem(int item) {
if (item < 0 || item >= m_respondWithList.size()) {
throw XSECException(XSECException::RequestAbstractTypeError,
"XKMSRequestAbstractTypeImpl::getRespondWithItem - item out of range");
}
return m_respondWithList[item];
}
const XMLCh * XKMSRequestAbstractTypeImpl::getRespondWithItemStr(int item) {
if (item < 0 || item >= m_respondWithList.size()) {
throw XSECException(XSECException::RequestAbstractTypeError,
"XKMSRequestAbstractTypeImpl::getRespondWithItem - item out of range");
}
return m_respondWithList[item]->getRespondWithString();
}
void XKMSRequestAbstractTypeImpl::appendRespondWithItem(XKMSRespondWith * item) {
}
void XKMSRequestAbstractTypeImpl::appendRespondWithItem(const XMLCh * item) {
}