LibreOffice Module xmlsecurity (master) 1
elementmark.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20
21#include "elementmark.hxx"
22
23ElementMark::ElementMark(sal_Int32 nSecurityId, sal_Int32 nBufferId)
24 :m_pBufferNode(nullptr),
25 m_nSecurityId(nSecurityId),
26 m_nBufferId(nBufferId),
27 m_type(css::xml::crypto::sax::ElementMarkType_ELEMENTMARK)
28/****** ElementMark/ElementMark ***********************************************
29 *
30 * NAME
31 * ElementMark -- constructor method
32 *
33 * SYNOPSIS
34 * ElementMark(nSecurityId, nBufferId);
35 *
36 * FUNCTION
37 * construct an ElementMark object.
38 *
39 * INPUTS
40 * nSecurityId - represents which security entity the buffer node is
41 * related with. Either a signature or an encryption is
42 * a security entity.
43 * nBufferId - the id of the element buffered in the document
44 * wrapper component. The document wrapper component
45 * uses this id to search the particular buffered
46 * element.
47 ******************************************************************************/
48{
49}
50
51
52void ElementMark::setBufferNode(const BufferNode* pBufferNode)
53{
54 m_pBufferNode = const_cast<BufferNode*>(pBufferNode);
55}
56
57
58void ElementMark::setSecurityId(sal_Int32 nSecurityId)
59{
60 m_nSecurityId = nSecurityId;
61}
62
63
64/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
void setSecurityId(sal_Int32 nSecurityId)
Definition: elementmark.cxx:58
void setBufferNode(const BufferNode *pBufferNode)
Definition: elementmark.cxx:52
BufferNode * m_pBufferNode
Definition: elementmark.hxx:39
ElementMark(sal_Int32 nSecurityId, sal_Int32 nBufferId)
Definition: elementmark.cxx:23
sal_Int32 m_nSecurityId
Definition: elementmark.hxx:42
const Type m_type