Monotone-Parent: a4b72920f072cccd72e189b05519b57436eb9471

Monotone-Revision: 71372fb23c7baec6da2c9bd612ed5a65db22f208

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-04-21T14:35:58
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-04-21 14:35:58 +00:00
parent 28911e16dd
commit f51c2b0f5b
25 changed files with 281 additions and 249 deletions
+1 -1
View File
@@ -46,7 +46,7 @@
andParameters: (NSDictionary *) parameters;
+ (SOGoCASSession *) CASSessionWithTicket: (NSString *) newTicket;
+ (SOGoCASSession *) CASSessionWithIdentifier: (NSString *) identifier;
+ (SOGoCASSession *) CASSessionWithIdentifier: (NSString *) newIdentifier;
- (NSString *) identifier;
+2 -2
View File
@@ -83,14 +83,14 @@
return newSession;
}
+ (SOGoCASSession *) CASSessionWithIdentifier: (NSString *) identifier
+ (SOGoCASSession *) CASSessionWithIdentifier: (NSString *) newIdentifier
{
SOGoCASSession *session;
SOGoCache *cache;
NSString *casTicket;
cache = [SOGoCache sharedCache];
casTicket = [cache CASTicketFromIdentifier: identifier];
casTicket = [cache CASTicketFromIdentifier: newIdentifier];
session = [self CASSessionWithTicket: casTicket];
return session;
+3 -2
View File
@@ -27,8 +27,9 @@
#import <NGObjWeb/WORequest.h>
#import <NGObjWeb/WOSession.h>
#import <SOGoUser.h>
#import <SOGoUserDefaults.h>
#import "SOGoDomainDefaults.h"
#import "SOGoUser.h"
#import "SOGoUserDefaults.h"
#import "WOContext+SOGo.h"