Type.registerNamespace('it.hoepli.hoepliTest.web');
it.hoepli.hoepliTest.web.TestTimerService=function() {
it.hoepli.hoepliTest.web.TestTimerService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
it.hoepli.hoepliTest.web.TestTimerService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return it.hoepli.hoepliTest.web.TestTimerService._staticInstance.get_path();},
GetTimer:function(vars,succeededCallback, failedCallback, userContext) {
/// <param name="vars" 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(), 'GetTimer',false,{vars:vars},succeededCallback,failedCallback,userContext); }}
it.hoepli.hoepliTest.web.TestTimerService.registerClass('it.hoepli.hoepliTest.web.TestTimerService',Sys.Net.WebServiceProxy);
it.hoepli.hoepliTest.web.TestTimerService._staticInstance = new it.hoepli.hoepliTest.web.TestTimerService();
it.hoepli.hoepliTest.web.TestTimerService.set_path = function(value) {
it.hoepli.hoepliTest.web.TestTimerService._staticInstance.set_path(value); }
it.hoepli.hoepliTest.web.TestTimerService.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return it.hoepli.hoepliTest.web.TestTimerService._staticInstance.get_path();}
it.hoepli.hoepliTest.web.TestTimerService.set_timeout = function(value) {
it.hoepli.hoepliTest.web.TestTimerService._staticInstance.set_timeout(value); }
it.hoepli.hoepliTest.web.TestTimerService.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return it.hoepli.hoepliTest.web.TestTimerService._staticInstance.get_timeout(); }
it.hoepli.hoepliTest.web.TestTimerService.set_defaultUserContext = function(value) { 
it.hoepli.hoepliTest.web.TestTimerService._staticInstance.set_defaultUserContext(value); }
it.hoepli.hoepliTest.web.TestTimerService.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return it.hoepli.hoepliTest.web.TestTimerService._staticInstance.get_defaultUserContext(); }
it.hoepli.hoepliTest.web.TestTimerService.set_defaultSucceededCallback = function(value) { 
 it.hoepli.hoepliTest.web.TestTimerService._staticInstance.set_defaultSucceededCallback(value); }
it.hoepli.hoepliTest.web.TestTimerService.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return it.hoepli.hoepliTest.web.TestTimerService._staticInstance.get_defaultSucceededCallback(); }
it.hoepli.hoepliTest.web.TestTimerService.set_defaultFailedCallback = function(value) { 
it.hoepli.hoepliTest.web.TestTimerService._staticInstance.set_defaultFailedCallback(value); }
it.hoepli.hoepliTest.web.TestTimerService.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return it.hoepli.hoepliTest.web.TestTimerService._staticInstance.get_defaultFailedCallback(); }
it.hoepli.hoepliTest.web.TestTimerService.set_path("/TestTimerService.asmx");
it.hoepli.hoepliTest.web.TestTimerService.GetTimer= function(vars,onSuccess,onFailed,userContext) {
/// <param name="vars" 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>
it.hoepli.hoepliTest.web.TestTimerService._staticInstance.GetTimer(vars,onSuccess,onFailed,userContext); }

