summaryrefslogtreecommitdiff
path: root/ucbhelper/source/provider/interactionrequest.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucbhelper/source/provider/interactionrequest.cxx')
-rw-r--r--ucbhelper/source/provider/interactionrequest.cxx104
1 files changed, 0 insertions, 104 deletions
diff --git a/ucbhelper/source/provider/interactionrequest.cxx b/ucbhelper/source/provider/interactionrequest.cxx
index c1d46179df7a..18f15e100e3f 100644
--- a/ucbhelper/source/provider/interactionrequest.cxx
+++ b/ucbhelper/source/provider/interactionrequest.cxx
@@ -849,110 +849,6 @@ void SAL_CALL InteractionSupplyAuthentication::setUseSystemCredentials(
-// InteractionSupplyName Implementation.
-
-
-
-
-
-
-// XInterface methods.
-
-
-
-// virtual
-void SAL_CALL InteractionSupplyName::acquire()
- throw()
-{
- OWeakObject::acquire();
-}
-
-
-// virtual
-void SAL_CALL InteractionSupplyName::release()
- throw()
-{
- OWeakObject::release();
-}
-
-
-// virtual
-uno::Any SAL_CALL
-InteractionSupplyName::queryInterface( const uno::Type & rType )
- throw ( uno::RuntimeException, std::exception )
-{
- uno::Any aRet = cppu::queryInterface( rType,
- static_cast< lang::XTypeProvider * >( this ),
- static_cast< task::XInteractionContinuation * >( this ),
- static_cast< ucb::XInteractionSupplyName * >( this ) );
-
- return aRet.hasValue()
- ? aRet : InteractionContinuation::queryInterface( rType );
-}
-
-
-
-// XTypeProvider methods.
-
-
-
-// virtual
-uno::Sequence< sal_Int8 > SAL_CALL InteractionSupplyName::getImplementationId()
- throw( uno::RuntimeException, std::exception )
-{
- return css::uno::Sequence<sal_Int8>();
-}
-
-
-// virtual
-uno::Sequence< uno::Type > SAL_CALL InteractionSupplyName::getTypes()
- throw( uno::RuntimeException, std::exception )
-{
- static cppu::OTypeCollection* pCollection = 0;
- if ( !pCollection )
- {
- osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() );
- if ( !pCollection )
- {
- static cppu::OTypeCollection collection(
- cppu::UnoType<lang::XTypeProvider>::get(),
- cppu::UnoType<ucb::XInteractionSupplyName>::get() );
- pCollection = &collection;
- }
- }
- return (*pCollection).getTypes();
-}
-
-
-
-// XInteractionContinuation methods.
-
-
-
-// virtual
-void SAL_CALL InteractionSupplyName::select()
- throw( uno::RuntimeException, std::exception )
-{
- recordSelection();
-}
-
-
-
-// XInteractionSupplyName methods.
-
-
-
-// virtual
-void SAL_CALL
-InteractionSupplyName::setName( const OUString& Name )
- throw( uno::RuntimeException, std::exception )
-{
- m_aName = Name;
-}
-
-
-
-
// InteractionReplaceExistingData Implementation.