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 #ifndef INCLUDED_UCB_SOURCE_UCP_CMIS_CMIS_URL_HXX
10 #define INCLUDED_UCB_SOURCE_UCP_CMIS_CMIS_URL_HXX
15 #include <rtl/ustring.hxx>
16 #include <tools/urlobj.hxx>
23 OUString m_sBindingUrl
;
24 OUString m_sRepositoryId
;
31 URL( OUString
const & urlStr
);
33 OUString
& getObjectPath( ) { return m_sPath
; }
34 OUString
& getObjectId( ) { return m_sId
; }
35 OUString
& getBindingUrl( ) { return m_sBindingUrl
; }
36 OUString
& getRepositoryId( ) { return m_sRepositoryId
; }
37 OUString
& getUsername( ) { return m_sUser
; }
38 OUString
& getPassword( ) { return m_sPass
; }
39 void setObjectPath( const OUString
& sPath
);
40 void setObjectId( const OUString
& sId
);
48 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */