var ContentRotator=function() {
ContentRotator.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ContentRotator.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return ContentRotator._staticInstance.get_path();},
GetContent:function(RotatorName,succeededCallback, failedCallback, userContext) {
/// <param name="RotatorName" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetContent',false,{RotatorName:RotatorName},succeededCallback,failedCallback,userContext); }}
ContentRotator.registerClass('ContentRotator',Sys.Net.WebServiceProxy);
ContentRotator._staticInstance = new ContentRotator();
ContentRotator.set_path = function(value) {
ContentRotator._staticInstance.set_path(value); }
ContentRotator.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return ContentRotator._staticInstance.get_path();}
ContentRotator.set_timeout = function(value) {
ContentRotator._staticInstance.set_timeout(value); }
ContentRotator.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return ContentRotator._staticInstance.get_timeout(); }
ContentRotator.set_defaultUserContext = function(value) { 
ContentRotator._staticInstance.set_defaultUserContext(value); }
ContentRotator.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return ContentRotator._staticInstance.get_defaultUserContext(); }
ContentRotator.set_defaultSucceededCallback = function(value) { 
 ContentRotator._staticInstance.set_defaultSucceededCallback(value); }
ContentRotator.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return ContentRotator._staticInstance.get_defaultSucceededCallback(); }
ContentRotator.set_defaultFailedCallback = function(value) { 
ContentRotator._staticInstance.set_defaultFailedCallback(value); }
ContentRotator.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return ContentRotator._staticInstance.get_defaultFailedCallback(); }
ContentRotator.set_path("/_services/ContentRotator.asmx");
ContentRotator.GetContent= function(RotatorName,onSuccess,onFailed,userContext) {
/// <param name="RotatorName" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
ContentRotator._staticInstance.GetContent(RotatorName,onSuccess,onFailed,userContext); }
