diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-03-11 09:09:41 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-03-11 09:11:38 +0100 |
commit | eb63915f0ab18cd7225a573bcb9a5121c7d6b0f1 (patch) | |
tree | 86d20f234a5214a4adad87192a7abbd6b86f60aa /xmlsecurity/source/helper | |
parent | 9f9fa48ad0539646c68f544af1d55711d7f74c15 (diff) |
xmlsecurity: clean up no longer relevant email addresses
Change-Id: I224a0914bd3506b4e2ce057c53838ec78187b060
Diffstat (limited to 'xmlsecurity/source/helper')
-rw-r--r-- | xmlsecurity/source/helper/xsecctl.cxx | 129 | ||||
-rw-r--r-- | xmlsecurity/source/helper/xsecctl.hxx | 4 | ||||
-rw-r--r-- | xmlsecurity/source/helper/xsecparser.hxx | 4 |
3 files changed, 0 insertions, 137 deletions
diff --git a/xmlsecurity/source/helper/xsecctl.cxx b/xmlsecurity/source/helper/xsecctl.cxx index 288295b86925..676e60d82c52 100644 --- a/xmlsecurity/source/helper/xsecctl.cxx +++ b/xmlsecurity/source/helper/xsecctl.cxx @@ -87,19 +87,12 @@ int XSecController::findSignatureInfor( sal_Int32 nSecurityId) const * SYNOPSIS * index = findSignatureInfor( nSecurityId ); * - * FUNCTION - * see NAME. - * * INPUTS * nSecurityId - the signature's id * * RESULT * index - the index of the signature, or -1 when no such signature * existing - * - * AUTHOR - * Michael Mi - * Email: michael.mi@sun.com ******************************************************************************/ { int i; @@ -122,24 +115,11 @@ void XSecController::createXSecComponent( ) * NAME * bResult = createXSecComponent -- creates xml security components * - * SYNOPSIS - * createXSecComponent( ); - * * FUNCTION * Creates xml security components, including: * 1. an xml signature bridge component ( Java based or C based) * 2. an XMLDocumentWrapper component ( Java based or C based) * 3. a SAXEventKeeper component - * - * INPUTS - * empty - * - * RESULT - * empty - * - * AUTHOR - * Michael Mi - * Email: michael.mi@sun.com ******************************************************************************/ { OUString sSAXEventKeeper( SAXEVENTKEEPER_COMPONENT ); @@ -242,10 +222,6 @@ bool XSecController::chainOn( bool bRetrievingLastEvent ) * So for the SAXEventKeeper, it needs to receive all missed key SAX * events except that startElement event, then adds a new * ElementCollector, then receives that startElement event. - * - * AUTHOR - * Michael Mi - * Email: michael.mi@sun.com ******************************************************************************/ { bool rc = false; @@ -327,22 +303,6 @@ void XSecController::chainOff() * * NAME * chainOff -- disconnects the SAXEventKeeper from the SAX chain. - * - * SYNOPSIS - * chainOff( ); - * - * FUNCTION - * See NAME. - * - * INPUTS - * empty - * - * RESULT - * empty - * - * AUTHOR - * Michael Mi - * Email: michael.mi@sun.com ******************************************************************************/ { if (!m_bIsSAXEventKeeperSticky ) @@ -398,16 +358,6 @@ void XSecController::checkChainingStatus() * 1. some element is being collected, or * 2. the SAX event stream is blocking. * Otherwise, chain off the SAXEventKeeper. - * - * INPUTS - * empty - * - * RESULT - * empty - * - * AUTHOR - * Michael Mi - * Email: michael.mi@sun.com ******************************************************************************/ { if ( m_bIsCollectingElement || m_bIsBlocking ) @@ -427,23 +377,10 @@ void XSecController::initializeSAXChain() * initializeSAXChain -- initializes the SAX chain according to the * current setting. * - * SYNOPSIS - * initializeSAXChain( ); - * * FUNCTION * Initializes the SAX chain, if the SAXEventKeeper is asked to be always * on the SAX chain, chains it on. Otherwise, starts the * ElementStackKeeper to reserve key SAX events. - * - * INPUTS - * empty - * - * RESULT - * empty - * - * AUTHOR - * Michael Mi - * Email: michael.mi@sun.com ******************************************************************************/ { m_bIsSAXEventKeeperConnected = false; @@ -471,18 +408,11 @@ cssu::Reference< com::sun::star::io::XInputStream > * SYNOPSIS * xInputStream = getObjectInputStream( objectURL ); * - * FUNCTION - * See NAME. - * * INPUTS * objectURL - the object uri * * RESULT * xInputStream - the XInputStream interface - * - * AUTHOR - * Michael Mi - * Email: michael.mi@sun.com ******************************************************************************/ { cssu::Reference< com::sun::star::io::XInputStream > xObjectInputStream; @@ -513,9 +443,6 @@ void XSecController::startMission( * NAME * startMission -- starts a new security mission. * - * SYNOPSIS - * startMission( xUriBinding, xSecurityContect ); - * * FUNCTION * get ready for a new mission. * @@ -524,13 +451,6 @@ void XSecController::startMission( * XInputStreams * xSecurityContext - the security context component which can provide * cryptoken - * - * RESULT - * empty - * - * AUTHOR - * Michael Mi - * Email: michael.mi@sun.com ******************************************************************************/ { m_xUriBinding = xUriBinding; @@ -559,21 +479,11 @@ void XSecController::setSAXChainConnector( * xDocumentHandler, * xElementStackKeeper ); * - * FUNCTION - * See NAME. - * * INPUTS * xInitialization - the previous node on the SAX chain * xDocumentHandler - the next node on the SAX chain * xElementStackKeeper - the ElementStackKeeper component which reserves * missed key SAX events for the SAXEventKeeper - * - * RESULT - * empty - * - * AUTHOR - * Michael Mi - * Email: michael.mi@sun.com ******************************************************************************/ { m_bIsPreviousNodeInitializable = true; @@ -589,22 +499,6 @@ void XSecController::clearSAXChainConnector() * * NAME * clearSAXChainConnector -- resets the collaborating components. - * - * SYNOPSIS - * clearSAXChainConnector( ); - * - * FUNCTION - * See NAME. - * - * INPUTS - * empty - * - * RESULT - * empty - * - * AUTHOR - * Michael Mi - * Email: michael.mi@sun.com ******************************************************************************/ { /* @@ -632,21 +526,8 @@ void XSecController::endMission() * NAME * endMission -- forces to end all missions * - * SYNOPSIS - * endMission( ); - * * FUNCTION * Deletes all signature information and forces all missions to an end. - * - * INPUTS - * empty - * - * RESULT - * empty - * - * AUTHOR - * Michael Mi - * Email: michael.mi@sun.com ******************************************************************************/ { sal_Int32 size = m_vInternalSignatureInformations.size(); @@ -695,19 +576,9 @@ void XSecController::exportSignature( * SYNOPSIS * exportSignature( xDocumentHandler, signatureInfo); * - * FUNCTION - * see NAME. - * * INPUTS * xDocumentHandler - the document handler to receive the signature * signatureInfo - signature to be exported - * - * RESULT - * empty - * - * AUTHOR - * Michael Mi - * Email: michael.mi@sun.com ******************************************************************************/ { /* diff --git a/xmlsecurity/source/helper/xsecctl.hxx b/xmlsecurity/source/helper/xsecctl.hxx index 595ea82ab89f..36f6dc2e9e8b 100644 --- a/xmlsecurity/source/helper/xsecctl.hxx +++ b/xmlsecurity/source/helper/xsecctl.hxx @@ -175,10 +175,6 @@ class XSecController : public cppu::WeakImplHelper * The XFastPropertySet interface is used to transfer common values to * classes in other module, for instance, the signature id for all * sessions is transferred to xmloff module through this interface. - * - * AUTHOR - * Michael Mi - * Email: michael.mi@sun.com ******************************************************************************/ { friend class XSecParser; diff --git a/xmlsecurity/source/helper/xsecparser.hxx b/xmlsecurity/source/helper/xsecparser.hxx index f87ca23685b9..92ec43608651 100644 --- a/xmlsecurity/source/helper/xsecparser.hxx +++ b/xmlsecurity/source/helper/xsecparser.hxx @@ -46,10 +46,6 @@ class XSecParser: public cppu::WeakImplHelper * * NOTES * This class is used when importing a document. - * - * AUTHOR - * Michael Mi - * Email: michael.mi@sun.com ******************************************************************************/ { friend class XSecController; |