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