Type.registerNamespace('FlickrFightr');
FlickrFightr.Mover=function() {
FlickrFightr.Mover.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
FlickrFightr.Mover.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return FlickrFightr.Mover._staticInstance.get_path();},
GetNextPhoto:function(x,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetNextPhoto',false,{x:x},succeededCallback,failedCallback,userContext); },
ResetList:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'ResetList',false,{},succeededCallback,failedCallback,userContext); }}
FlickrFightr.Mover.registerClass('FlickrFightr.Mover',Sys.Net.WebServiceProxy);
FlickrFightr.Mover._staticInstance = new FlickrFightr.Mover();
FlickrFightr.Mover.set_path = function(value) { FlickrFightr.Mover._staticInstance.set_path(value); }
FlickrFightr.Mover.get_path = function() { return FlickrFightr.Mover._staticInstance.get_path(); }
FlickrFightr.Mover.set_timeout = function(value) { FlickrFightr.Mover._staticInstance.set_timeout(value); }
FlickrFightr.Mover.get_timeout = function() { return FlickrFightr.Mover._staticInstance.get_timeout(); }
FlickrFightr.Mover.set_defaultUserContext = function(value) { FlickrFightr.Mover._staticInstance.set_defaultUserContext(value); }
FlickrFightr.Mover.get_defaultUserContext = function() { return FlickrFightr.Mover._staticInstance.get_defaultUserContext(); }
FlickrFightr.Mover.set_defaultSucceededCallback = function(value) { FlickrFightr.Mover._staticInstance.set_defaultSucceededCallback(value); }
FlickrFightr.Mover.get_defaultSucceededCallback = function() { return FlickrFightr.Mover._staticInstance.get_defaultSucceededCallback(); }
FlickrFightr.Mover.set_defaultFailedCallback = function(value) { FlickrFightr.Mover._staticInstance.set_defaultFailedCallback(value); }
FlickrFightr.Mover.get_defaultFailedCallback = function() { return FlickrFightr.Mover._staticInstance.get_defaultFailedCallback(); }
FlickrFightr.Mover.set_path("/WebServices/Mover.asmx");
FlickrFightr.Mover.GetNextPhoto= function(x,onSuccess,onFailed,userContext) {FlickrFightr.Mover._staticInstance.GetNextPhoto(x,onSuccess,onFailed,userContext); }
FlickrFightr.Mover.ResetList= function(onSuccess,onFailed,userContext) {FlickrFightr.Mover._staticInstance.ResetList(onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(Photo) === 'undefined') {
var Photo=gtc("Photo");
Photo.registerClass('Photo');
}
