summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSHTTPCookieStorage.java
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSHTTPCookieStorage.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSHTTPCookieStorage.java50
1 files changed, 50 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSHTTPCookieStorage.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSHTTPCookieStorage.java
new file mode 100644
index 0000000000..9d027f0291
--- /dev/null
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSHTTPCookieStorage.java
@@ -0,0 +1,50 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.swt.internal.cocoa;
+
+public class NSHTTPCookieStorage extends NSObject {
+
+public NSHTTPCookieStorage() {
+ super();
+}
+
+public NSHTTPCookieStorage(int /*long*/ id) {
+ super(id);
+}
+
+public NSHTTPCookieStorage(id id) {
+ super(id);
+}
+
+public NSArray cookies() {
+ int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_cookies);
+ return result != 0 ? new NSArray(result) : null;
+}
+
+public NSArray cookiesForURL(NSURL URL) {
+ int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_cookiesForURL_, URL != null ? URL.id : 0);
+ return result != 0 ? new NSArray(result) : null;
+}
+
+public void deleteCookie(NSHTTPCookie cookie) {
+ OS.objc_msgSend(this.id, OS.sel_deleteCookie_, cookie != null ? cookie.id : 0);
+}
+
+public void setCookie(NSHTTPCookie cookie) {
+ OS.objc_msgSend(this.id, OS.sel_setCookie_, cookie != null ? cookie.id : 0);
+}
+
+public static NSHTTPCookieStorage sharedHTTPCookieStorage() {
+ int /*long*/ result = OS.objc_msgSend(OS.class_NSHTTPCookieStorage, OS.sel_sharedHTTPCookieStorage);
+ return result != 0 ? new NSHTTPCookieStorage(result) : null;
+}
+
+}