blob: 0324cc4062cb7c15e83a4c21da95cbe9369bb3e4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2012 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.internal.cocoa;
public class NSHTTPCookie extends NSObject {
public NSHTTPCookie() {
super();
}
public NSHTTPCookie(long id) {
super(id);
}
public NSHTTPCookie(id id) {
super(id);
}
public static NSArray cookiesWithResponseHeaderFields(NSDictionary headerFields, NSURL URL) {
long result = OS.objc_msgSend(OS.class_NSHTTPCookie, OS.sel_cookiesWithResponseHeaderFields_forURL_, headerFields != null ? headerFields.id : 0, URL != null ? URL.id : 0);
return result != 0 ? new NSArray(result) : null;
}
public boolean isSessionOnly() {
return OS.objc_msgSend_bool(this.id, OS.sel_isSessionOnly);
}
public NSString name() {
long result = OS.objc_msgSend(this.id, OS.sel_name);
return result != 0 ? new NSString(result) : null;
}
public NSString value() {
long result = OS.objc_msgSend(this.id, OS.sel_value);
return result != 0 ? new NSString(result) : null;
}
}