Branch data Line data Source code
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 : : #include "buffernode.hxx"
23 : :
24 : : namespace cssxc = com::sun::star::xml::crypto;
25 : :
26 : 0 : ElementMark::ElementMark(sal_Int32 nSecurityId, sal_Int32 nBufferId)
27 : : :m_pBufferNode(NULL),
28 : : m_nSecurityId(nSecurityId),
29 : : m_nBufferId(nBufferId),
30 : 0 : m_type(cssxc::sax::ElementMarkType_ELEMENTMARK)
31 : : /****** ElementMark/ElementMark ***********************************************
32 : : *
33 : : * NAME
34 : : * ElementMark -- constructor method
35 : : *
36 : : * SYNOPSIS
37 : : * ElementMark(nSecurityId, nBufferId);
38 : : *
39 : : * FUNCTION
40 : : * construct an ElementMark object.
41 : : *
42 : : * INPUTS
43 : : * nSecurityId - represents which security entity the buffer node is
44 : : * related with. Either a signature or an encryption is
45 : : * a security entity.
46 : : * nBufferId - the id of the element bufferred in the document
47 : : * wrapper component. The document wrapper component
48 : : * uses this id to search the particular bufferred
49 : : * element.
50 : : *
51 : : * RESULT
52 : : * empty
53 : : *
54 : : * AUTHOR
55 : : * Michael Mi
56 : : * Email: michael.mi@sun.com
57 : : ******************************************************************************/
58 : : {
59 : 0 : }
60 : :
61 : 0 : BufferNode* ElementMark::getBufferNode() const
62 : : {
63 : 0 : return m_pBufferNode;
64 : : }
65 : :
66 : 0 : void ElementMark::setBufferNode(const BufferNode* pBufferNode)
67 : : {
68 : 0 : m_pBufferNode = (BufferNode*)pBufferNode;
69 : 0 : }
70 : :
71 : 0 : sal_Int32 ElementMark::getSecurityId() const
72 : : {
73 : 0 : return m_nSecurityId;
74 : : }
75 : :
76 : 0 : void ElementMark::setSecurityId(sal_Int32 nSecurityId)
77 : : {
78 : 0 : m_nSecurityId = nSecurityId;
79 : 0 : }
80 : :
81 : 0 : com::sun::star::xml::crypto::sax::ElementMarkType ElementMark::getType() const
82 : : {
83 : 0 : return m_type;
84 : : }
85 : :
86 : 0 : sal_Int32 ElementMark::getBufferId() const
87 : : {
88 : 0 : return m_nBufferId;
89 : : }
90 : :
91 : :
92 : :
93 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|