LibreOffice Module xmlsecurity (master) 1
elementmark.hxx
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#pragma once
21
22#include <com/sun/star/xml/crypto/sax/ElementMarkType.hpp>
23
24class BufferNode;
25
27/****** elementmark.hxx/CLASS ElementMark *************************************
28 *
29 * NAME
30 * ElementMark -- Class to manipulate an element mark
31 *
32 * FUNCTION
33 * This class maintains the security id, buffer id and its type for a
34 * buffer node.
35 ******************************************************************************/
36{
37protected:
38 /* the BufferNode maintained by this object */
40
41 /* the security Id */
42 sal_Int32 m_nSecurityId;
43
44 /* the buffer Id */
45 sal_Int32 const m_nBufferId;
46
47 /*
48 * the type value, is one of following values:
49 * TYPEOFELEMENTMARK - the default value, represents a blocker if
50 * not changed
51 * TYPEOFELEMENTCOLLECTOR - represents an ElementCollector
52 */
53 css::xml::crypto::sax::ElementMarkType m_type;
54
55public:
56 ElementMark(sal_Int32 nSecurityId, sal_Int32 nBufferId);
57 virtual ~ElementMark(){};
58
60 void setBufferNode(const BufferNode* pBufferNode);
61 sal_Int32 getSecurityId() const { return m_nSecurityId; }
62 void setSecurityId(sal_Int32 nSecurityId);
63 css::xml::crypto::sax::ElementMarkType getType() const { return m_type; }
64 sal_Int32 getBufferId() const { return m_nBufferId; }
65};
66
67/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
css::xml::crypto::sax::ElementMarkType getType() const
Definition: elementmark.hxx:63
sal_Int32 const m_nBufferId
Definition: elementmark.hxx:45
void setSecurityId(sal_Int32 nSecurityId)
Definition: elementmark.cxx:58
sal_Int32 getBufferId() const
Definition: elementmark.hxx:64
virtual ~ElementMark()
Definition: elementmark.hxx:57
void setBufferNode(const BufferNode *pBufferNode)
Definition: elementmark.cxx:52
BufferNode * m_pBufferNode
Definition: elementmark.hxx:39
BufferNode * getBufferNode() const
Definition: elementmark.hxx:59
ElementMark(sal_Int32 nSecurityId, sal_Int32 nBufferId)
Definition: elementmark.cxx:23
sal_Int32 m_nSecurityId
Definition: elementmark.hxx:42
sal_Int32 getSecurityId() const
Definition: elementmark.hxx:61
css::xml::crypto::sax::ElementMarkType m_type
Definition: elementmark.hxx:53