00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSDictionary, NSMutableArray, NSURL;
00010
00011 @interface ISURLResolver : NSObject
00012 {
00013 NSURL *_bootstrapURL;
00014 NSMutableArray *_sessions;
00015 NSDictionary *_lastURLBag;
00016 }
00017
00018 + (id)defaultResolver;
00019 + (void)incrementSequenceNumber;
00020 - (id)initWithBootstrapURL:(id)fp8;
00021 - (void)dealloc;
00022 - (void)addRequestNeedingResolution:(id)fp8 operation:(id)fp12 arguments:(id)fp16;
00023 - (void)addPendingRequest:(id)fp8;
00024 - (int)urlIsTrusted:(id)fp8;
00025 - (id)urlStringForOperation:(id)fp8;
00026 - (void)bagSessionStateDidChange:(id)fp8;
00027 - (void)bagSession:(id)fp8 finishedWithError:(id)fp12;
00028 - (void)bagSession:(id)fp8 retrievedURLBag:(id)fp12;
00029 - (id)_currentSession;
00030 - (Class)_sessionClass;
00031
00032 @end
00033