view dstep/foundation/NSURLCredentialStorage.d @ 14:89f3c3ef1fd2

Added the Foundation framework
author Jacob Carlborg <doob@me.com>
date Mon, 03 Aug 2009 15:23:15 +0200
parents
children 7ff919f595d5
line wrap: on
line source

/**
 * Copyright: Copyright (c) 2009 Jacob Carlborg.
 * Authors: Jacob Carlborg
 * Version: Initial created: Aug 3, 2009 
 * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0)
 */
module dstep.foundation.NSURLCredentialStorage;

import dstep.AvailabilityMacros;
import dstep.foundation.NSDictionary;
import dstep.foundation.NSObject;
import dstep.foundation.NSString;
import dstep.foundation.NSURLCredential;
import dstep.foundation.NSURLCredentialStorageInternal;
import dstep.foundation.NSURLProtectionSpace;
import dstep.objc.bridge.Bridge;
import dstep.objc.objc : id;

import bindings = dstep.foundation.NSURLCredentialStorage_bindings;

const NSString NSURLCredentialStorageChangedNotification;

static this ()
{
	NSURLCredentialStorageChangedNotification = new NSString(bindings.NSURLCredentialStorageChangedNotification);
}

class NSURLCredentialStorage : NSObject
{
	mixin ObjcWrap;

	static NSURLCredentialStorage sharedCredentialStorage ()
	{
		return invokeObjcSelfClass!(NSURLCredentialStorage, "sharedCredentialStorage"return result is this.objcObject ? this : (result !is null ? new NSURLCredentialStorage(result) : null);	}

	NSDictionary credentialsForProtectionSpace (NSURLProtectionSpace space)
	{
		return invokeObjcSelf!(NSDictionary, "credentialsForProtectionSpace:", NSURLProtectionSpace)(space);
	}

	NSDictionary allCredentials ()
	{
		return invokeObjcSelf!(NSDictionary, "allCredentials");
	}

	void setCredential (NSURLCredential credential, NSURLProtectionSpace space)
	{
		return invokeObjcSelf!(void, "setCredential:forProtectionSpace:", NSURLCredential, NSURLProtectionSpace)(credential, space);
	}

	void removeCredential (NSURLCredential credential, NSURLProtectionSpace space)
	{
		return invokeObjcSelf!(void, "removeCredential:forProtectionSpace:", NSURLCredential, NSURLProtectionSpace)(credential, space);
	}

	NSURLCredential defaultCredentialForProtectionSpace (NSURLProtectionSpace space)
	{
		return invokeObjcSelf!(NSURLCredential, "defaultCredentialForProtectionSpace:", NSURLProtectionSpace)(space);
	}

	void setDefaultCredential (NSURLCredential credential, NSURLProtectionSpace space)
	{
		return invokeObjcSelf!(void, "setDefaultCredential:forProtectionSpace:", NSURLCredential, NSURLProtectionSpace)(credential, space);
	}
}