| /* |
| * 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 |
| * |
| * XKMSResultImpl := Implementation of Result Messages |
| * |
| * $Id$ |
| * |
| */ |
| |
| #include <xsec/framework/XSECDefs.hpp> |
| #include <xsec/framework/XSECError.hpp> |
| #include <xsec/framework/XSECEnv.hpp> |
| #include <xsec/utils/XSECDOMUtils.hpp> |
| #include <xsec/xkms/XKMSConstants.hpp> |
| |
| #include "XKMSResultImpl.hpp" |
| |
| #include <xercesc/dom/DOM.hpp> |
| |
| XERCES_CPP_NAMESPACE_USE |
| |
| // -------------------------------------------------------------------------------- |
| // Construct/Destruct |
| // -------------------------------------------------------------------------------- |
| |
| XKMSResultImpl::XKMSResultImpl( |
| const XSECEnv * env) : |
| m_result(env), |
| m_msg(m_result.m_msg) { |
| |
| } |
| |
| XKMSResultImpl::XKMSResultImpl( |
| const XSECEnv * env, |
| XERCES_CPP_NAMESPACE_QUALIFIER DOMElement * node) : |
| m_result(env, node), |
| m_msg(m_result.m_msg) { |
| |
| } |
| |
| XKMSResultImpl::~XKMSResultImpl() { |
| |
| |
| } |
| |
| |
| // -------------------------------------------------------------------------------- |
| // Load from DOM |
| // -------------------------------------------------------------------------------- |
| |
| // Load elements |
| void XKMSResultImpl::load() { |
| |
| if (m_msg.mp_messageAbstractTypeElement == NULL) { |
| |
| // Attempt to load an empty element |
| throw XSECException(XSECException::XKMSError, |
| "XKMSResult::load - called on empty DOM"); |
| |
| } |
| |
| if (!strEquals(getXKMSLocalName(m_msg.mp_messageAbstractTypeElement), |
| XKMSConstants::s_tagResult)) { |
| |
| throw XSECException(XSECException::XKMSError, |
| "XKMSResult::load - called incorrect node"); |
| |
| } |
| |
| // Load the base message |
| m_result.load(); |
| |
| } |
| |
| // -------------------------------------------------------------------------------- |
| // Create a blank one |
| // -------------------------------------------------------------------------------- |
| DOMElement * XKMSResultImpl::createBlankResult( |
| const XMLCh * service, |
| const XMLCh * id, |
| ResultMajor rmaj, |
| ResultMinor rmin) { |
| |
| return m_result.createBlankResultType( |
| XKMSConstants::s_tagResult, service, id, rmaj, rmin); |
| |
| } |
| |
| // -------------------------------------------------------------------------------- |
| // Get interface methods |
| // -------------------------------------------------------------------------------- |
| |
| XKMSMessageAbstractType::messageType XKMSResultImpl::getMessageType(void) { |
| |
| return XKMSMessageAbstractTypeImpl::Result; |
| |
| } |
| |