/* * Copyright 2004-2005 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. */ /* * XSEC * * XKMSRevokeResultImpl := Implementation of RegisterResult Messages * * $Id:$ * */ #include #include #include #include #include #include "XKMSRevokeResultImpl.hpp" #include "XKMSKeyBindingImpl.hpp" #include XERCES_CPP_NAMESPACE_USE // -------------------------------------------------------------------------------- // Construct/Destruct // -------------------------------------------------------------------------------- XKMSRevokeResultImpl::XKMSRevokeResultImpl( const XSECEnv * env) : m_result(env), m_msg(m_result.m_msg) { } XKMSRevokeResultImpl::XKMSRevokeResultImpl( const XSECEnv * env, XERCES_CPP_NAMESPACE_QUALIFIER DOMElement * node) : m_result(env, node), m_msg(m_result.m_msg) { } XKMSRevokeResultImpl::~XKMSRevokeResultImpl() { XKMSRevokeResultImpl::KeyBindingVectorType::iterator i; for (i = m_keyBindingList.begin() ; i < m_keyBindingList.end(); i++) { delete (*i); } } // -------------------------------------------------------------------------------- // Load from DOM // -------------------------------------------------------------------------------- // Load elements void XKMSRevokeResultImpl::load() { if (m_msg.mp_messageAbstractTypeElement == NULL) { // Attempt to load an empty element throw XSECException(XSECException::XKMSError, "XKMSRevokeResult::load - called on empty DOM"); } if (!strEquals(getXKMSLocalName(m_msg.mp_messageAbstractTypeElement), XKMSConstants::s_tagRevokeResult)) { throw XSECException(XSECException::XKMSError, "XKMSRevokeResult::load - called incorrect node"); } // Get any UnverifiedKeyBinding elements DOMNodeList * nl = m_msg.mp_messageAbstractTypeElement->getElementsByTagNameNS( XKMSConstants::s_unicodeStrURIXKMS, XKMSConstants::s_tagKeyBinding); if (nl != NULL) { XKMSKeyBindingImpl * kb; for (unsigned int i = 0; i < nl->getLength() ; ++ i) { XSECnew(kb, XKMSKeyBindingImpl(m_msg.mp_env, (DOMElement *) nl->item(i))); m_keyBindingList.push_back(kb); kb->load(); } } // Load the base message m_result.load(); } // -------------------------------------------------------------------------------- // Create a blank one // -------------------------------------------------------------------------------- DOMElement * XKMSRevokeResultImpl::createBlankRevokeResult( const XMLCh * service, const XMLCh * id, ResultMajor rmaj, ResultMinor rmin) { return m_result.createBlankResultType( XKMSConstants::s_tagRevokeResult, service, id, rmaj, rmin); } // -------------------------------------------------------------------------------- // Get interface methods // -------------------------------------------------------------------------------- XKMSMessageAbstractType::messageType XKMSRevokeResultImpl::getMessageType(void) { return XKMSMessageAbstractTypeImpl::RevokeResult; } // -------------------------------------------------------------------------------- // UnverifiedKeyBinding handling // -------------------------------------------------------------------------------- int XKMSRevokeResultImpl::getKeyBindingSize(void) const { return (int) m_keyBindingList.size(); } XKMSKeyBinding * XKMSRevokeResultImpl::getKeyBindingItem(int item) const { if (item < 0 || item >= (int) m_keyBindingList.size()) { throw XSECException(XSECException::XKMSError, "XKMSRevokeResult::getKeyBindingItem - item out of range"); } return m_keyBindingList[item]; } XKMSKeyBinding * XKMSRevokeResultImpl::appendKeyBindingItem(XKMSStatus::StatusValue status) { XKMSKeyBindingImpl * u; XSECnew(u, XKMSKeyBindingImpl(m_msg.mp_env)); m_keyBindingList.push_back(u); DOMElement * e = u->createBlankKeyBinding(status); // Append the element m_msg.mp_messageAbstractTypeElement->appendChild(e); m_msg.mp_env->doPrettyPrint(m_msg.mp_messageAbstractTypeElement); return u; }