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={
GetNextPhoto:function(x,succeededCallback, failedCallback, userContext) {
return this._invoke(FlickrFightr.Mover.get_path(), 'GetNextPhoto',false,{x:x},succeededCallback,failedCallback,userContext); },
ResetList:function(succeededCallback, failedCallback, userContext) {
return this._invoke(FlickrFightr.Mover.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._path = value; }
FlickrFightr.Mover.get_path = function() { return FlickrFightr.Mover._staticInstance._path; }
FlickrFightr.Mover.set_timeout = function(value) { FlickrFightr.Mover._staticInstance._timeout = value; }
FlickrFightr.Mover.get_timeout = function() { return FlickrFightr.Mover._staticInstance._timeout; }
FlickrFightr.Mover.set_defaultUserContext = function(value) { FlickrFightr.Mover._staticInstance._userContext = value; }
FlickrFightr.Mover.get_defaultUserContext = function() { return FlickrFightr.Mover._staticInstance._userContext; }
FlickrFightr.Mover.set_defaultSucceededCallback = function(value) { FlickrFightr.Mover._staticInstance._succeeded = value; }
FlickrFightr.Mover.get_defaultSucceededCallback = function() { return FlickrFightr.Mover._staticInstance._succeeded; }
FlickrFightr.Mover.set_defaultFailedCallback = function(value) { FlickrFightr.Mover._staticInstance._failed = value; }
FlickrFightr.Mover.get_defaultFailedCallback = function() { return FlickrFightr.Mover._staticInstance._failed; }
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');
}
