summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-11-30 14:01:04 +0100
committerMichael Stahl <mstahl@redhat.com>2012-11-30 14:15:34 +0100
commit04553f43e8bf12c8ecbbfb24f87199767c34c4f4 (patch)
tree3897d6feb70e7243701af8032669dfc11655e7ff
parent3d4288c1c0b593421c7f6619c88584bdb7c53337 (diff)
API CHANGE: remove com.sun.star.ucb.Cookie related API
The implementation behind these types was removed in LibreOffice 3.6, for bug fdo#48870. com.sun.star.ucb.Cookie com.sun.star.ucb.CookiePolicy com.sun.star.ucb.CookieRequest com.sun.star.ucb.HandleCookiesRequest com.sun.star.ucb.XInteractionCookieHandling EXISTENCE: published key "/UCR/com/sun/star/ucb/CookieRequest" exists only in registry 1 EXISTENCE: published key "/UCR/com/sun/star/ucb/XInteractionCookieHandling" exists only in registry 1 EXISTENCE: published key "/UCR/com/sun/star/ucb/HandleCookiesRequest" exists only in registry 1 EXISTENCE: published key "/UCR/com/sun/star/ucb/Cookie" exists only in registry 1 EXISTENCE: published key "/UCR/com/sun/star/ucb/CookiePolicy" exists only in registry 1 Change-Id: Ia7516eda8913aa721da386882543adaddbba7e2f
-rw-r--r--offapi/UnoApi_offapi.mk5
-rw-r--r--offapi/com/sun/star/ucb/Cookie.idl69
-rw-r--r--offapi/com/sun/star/ucb/CookiePolicy.idl51
-rw-r--r--offapi/com/sun/star/ucb/CookieRequest.idl47
-rw-r--r--offapi/com/sun/star/ucb/HandleCookiesRequest.idl55
-rw-r--r--offapi/com/sun/star/ucb/XInteractionCookieHandling.idl73
-rw-r--r--offapi/type_reference/types.rdbbin7486976 -> 7486976 bytes
7 files changed, 0 insertions, 300 deletions
diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk
index 7311622379db..4f5af08563dc 100644
--- a/offapi/UnoApi_offapi.mk
+++ b/offapi/UnoApi_offapi.mk
@@ -3701,9 +3701,6 @@ $(eval $(call gb_UnoApi_add_idlfiles,offapi,offapi/com/sun/star/ucb,\
3701 ContentInfoAttribute \ 3701 ContentInfoAttribute \
3702 ContentProviderInfo \ 3702 ContentProviderInfo \
3703 ContentResultSetCapability \ 3703 ContentResultSetCapability \
3704 Cookie \
3705 CookiePolicy \
3706 CookieRequest \
3707 CrossReference \ 3704 CrossReference \
3708 DocumentHeaderField \ 3705 DocumentHeaderField \
3709 DocumentStoreMode \ 3706 DocumentStoreMode \
@@ -3719,7 +3716,6 @@ $(eval $(call gb_UnoApi_add_idlfiles,offapi,offapi/com/sun/star/ucb,\
3719 FolderListEntry \ 3716 FolderListEntry \
3720 GlobalTransferCommandArgument \ 3717 GlobalTransferCommandArgument \
3721 GlobalTransferCommandArgument2 \ 3718 GlobalTransferCommandArgument2 \
3722 HandleCookiesRequest \
3723 IOErrorCode \ 3719 IOErrorCode \
3724 IllegalIdentifierException \ 3720 IllegalIdentifierException \
3725 InsertCommandArgument \ 3721 InsertCommandArgument \
@@ -3827,7 +3823,6 @@ $(eval $(call gb_UnoApi_add_idlfiles,offapi,offapi/com/sun/star/ucb,\
3827 XFetchProvider \ 3823 XFetchProvider \
3828 XFetchProviderForContentAccess \ 3824 XFetchProviderForContentAccess \
3829 XFileIdentifierConverter \ 3825 XFileIdentifierConverter \
3830 XInteractionCookieHandling \
3831 XInteractionHandlerSupplier \ 3826 XInteractionHandlerSupplier \
3832 XInteractionReplaceExistingData \ 3827 XInteractionReplaceExistingData \
3833 XInteractionSupplyAuthentication \ 3828 XInteractionSupplyAuthentication \
diff --git a/offapi/com/sun/star/ucb/Cookie.idl b/offapi/com/sun/star/ucb/Cookie.idl
deleted file mode 100644
index fd8da0dac16a..000000000000
--- a/offapi/com/sun/star/ucb/Cookie.idl
+++ /dev/null
@@ -1,69 +0,0 @@
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#ifndef __com_sun_star_ucb_Cookie_idl__
20#define __com_sun_star_ucb_Cookie_idl__
21
22#include <com/sun/star/util/DateTime.idl>
23#include <com/sun/star/ucb/CookiePolicy.idl>
24
25
26
27module com { module sun { module star { module ucb {
28
29/** A cookie.
30@deprecated
31*/
32published struct Cookie
33{
34 /** The name of the cookie.
35 */
36 string Name;
37
38 /** The value of the cookie.
39 */
40 string Value;
41
42 /** The domain to which the cookie applies.
43 */
44 string Domain;
45
46 /** The path to which the cookie applies.
47 */
48 string Path;
49
50 /** The date the cookie will expire.
51 */
52 com::sun::star::util::DateTime Expires;
53
54 /** Whether the requested action should be performed in a secure fashion.
55 */
56 boolean Secure;
57
58 /** The policy for handling this cookie in the future.
59 */
60 com::sun::star::ucb::CookiePolicy Policy;
61
62};
63
64
65}; }; }; };
66
67#endif
68
69/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/ucb/CookiePolicy.idl b/offapi/com/sun/star/ucb/CookiePolicy.idl
deleted file mode 100644
index 6f9c2e8b04e7..000000000000
--- a/offapi/com/sun/star/ucb/CookiePolicy.idl
+++ /dev/null
@@ -1,51 +0,0 @@
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#ifndef __com_sun_star_ucb_CookiePolicy_idl__
20#define __com_sun_star_ucb_CookiePolicy_idl__
21
22
23
24module com { module sun { module star { module ucb {
25
26/** A policy how to handle cookie requests.
27
28@deprecated
29*/
30published enum CookiePolicy
31{
32 /** Interactively accept or ignore each individual cookie request.
33 */
34 CONFIRM,
35
36 /** Generally accept all cookie requests.
37 */
38 ACCEPT,
39
40 /** Generally ignore all cookie requests.
41 */
42 IGNORE
43
44};
45
46
47}; }; }; };
48
49#endif
50
51/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/ucb/CookieRequest.idl b/offapi/com/sun/star/ucb/CookieRequest.idl
deleted file mode 100644
index 92b87c5107ff..000000000000
--- a/offapi/com/sun/star/ucb/CookieRequest.idl
+++ /dev/null
@@ -1,47 +0,0 @@
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#ifndef __com_sun_star_ucb_CookieRequest_idl__
20#define __com_sun_star_ucb_CookieRequest_idl__
21
22
23
24module com { module sun { module star { module ucb {
25
26/** Cookie requests.
27
28@deprecated
29*/
30published enum CookieRequest
31{
32 /** Receive (store) a cookie.
33 */
34 RECEIVE,
35
36 /** Send a (stored) cookie.
37 */
38 SEND
39
40};
41
42
43}; }; }; };
44
45#endif
46
47/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/ucb/HandleCookiesRequest.idl b/offapi/com/sun/star/ucb/HandleCookiesRequest.idl
deleted file mode 100644
index 3fee1862a4b9..000000000000
--- a/offapi/com/sun/star/ucb/HandleCookiesRequest.idl
+++ /dev/null
@@ -1,55 +0,0 @@
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#ifndef __com_sun_star_ucb_HandleCookiesRequest_idl__
20#define __com_sun_star_ucb_HandleCookiesRequest_idl__
21
22#include <com/sun/star/task/ClassifiedInteractionRequest.idl>
23#include <com/sun/star/ucb/Cookie.idl>
24#include <com/sun/star/ucb/CookieRequest.idl>
25
26
27
28module com { module sun { module star { module ucb {
29
30/** An error requesting guidance on how to handle cookie requests.
31
32@deprecated
33*/
34published exception HandleCookiesRequest: com::sun::star::task::ClassifiedInteractionRequest
35{
36 /** The URL for which one ore more cookies are requested.
37 */
38 string URL;
39
40 /** The requested cookies.
41 */
42 sequence<com::sun::star::ucb::Cookie> Cookies;
43
44 /** Whether to receive (store) or send the cookies.
45 */
46 com::sun::star::ucb::CookieRequest Request;
47
48};
49
50
51}; }; }; };
52
53#endif
54
55/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/ucb/XInteractionCookieHandling.idl b/offapi/com/sun/star/ucb/XInteractionCookieHandling.idl
deleted file mode 100644
index 797042d0f1ea..000000000000
--- a/offapi/com/sun/star/ucb/XInteractionCookieHandling.idl
+++ /dev/null
@@ -1,73 +0,0 @@
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#ifndef __com_sun_star_ucb_XInteractionCookieHandling_idl__
20#define __com_sun_star_ucb_XInteractionCookieHandling_idl__
21
22#include <com/sun/star/task/XInteractionContinuation.idl>
23#include <com/sun/star/ucb/CookiePolicy.idl>
24#include <com/sun/star/ucb/Cookie.idl>
25
26
27
28module com { module sun { module star { module ucb {
29
30/** An interaction continuation handing back some cookie request handling
31 policy.
32
33 <p>This continuation is typically used in conjunction with
34 <type>HandleCookiesRequest</type>.
35
36 @deprecated
37*/
38published interface XInteractionCookieHandling: com::sun::star::task::XInteractionContinuation
39{
40 /** Set a general policy to hand back.
41
42 <p>This method should be called before select().
43
44 @param Policy
45 Some policy how to handle cookies.
46 */
47 void setGeneralPolicy( [in] com::sun::star::ucb::CookiePolicy Policy );
48
49 /** Set a policy to hand back for a specific cookie.
50
51 <p>This method should be called before select().
52
53 @param ConfirmCookie
54 A cookie that should come from the sequence of
55 cookies offered by the <type>HandleCookiesRequest</type> and that
56 should have a policy of <member>CookiePolicy::CONFIRM</member>.
57
58 @param Accept
59 If <TRUE/>, set the policy for the cookie to
60 <member>CookiePolicy::ACCEPT</member>; otherwise, set it to
61 <member>CookiePolicy::IGNORE</member>.
62 */
63 void setSpecificPolicy( [in] com::sun::star::ucb::Cookie ConfirmCookie,
64 [in] boolean Accept );
65
66};
67
68
69}; }; }; };
70
71#endif
72
73/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/type_reference/types.rdb b/offapi/type_reference/types.rdb
index 1190d094d5e3..7bf0a5b98451 100644
--- a/offapi/type_reference/types.rdb
+++ b/offapi/type_reference/types.rdb
Binary files differ