1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 module com
{ module sun
{ module star
{ module xml
{ module crypto
{ module sax
{
23 * Interface of Security SAX Event Keeper.
25 * This interface is an extension of the XSAXEventKeeper interface,
26 * some security related features are added.
28 interface XSecuritySAXEventKeeper
: XSAXEventKeeper
31 * Adds a new element collector on the next element in the SAX event
34 * @param priority the priority of the element collector. See
36 * @param modifyElement a flag representing whether the element
37 * collector will modify the content of its
38 * element after notification
39 * @return the keeper id of the new element collector
41 long addSecurityElementCollector
(
42 [in] ElementMarkPriority priority
,
43 [in] boolean modifyElement
);
46 * Sets security id for an element mark.
48 * @param id the keeper id of the element collector to be set
49 * @param securityId the security id to be set
51 void setSecurityId
([in] long id, [in] long securityId
);
54 } ; } ; } ; } ; } ; } ;
56 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */