var Common=function() {
Common.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Common.prototype={
CheckIfLoginValid:function(userId,login,succeededCallback, failedCallback, userContext) {
return this._invoke(Common.get_path(), 'CheckIfLoginValid',false,{userId:userId,login:login},succeededCallback,failedCallback,userContext); },
StudentBrief:function(contextKey,succeededCallback, failedCallback, userContext) {
return this._invoke(Common.get_path(), 'StudentBrief',false,{contextKey:contextKey},succeededCallback,failedCallback,userContext); },
PublicPreview:function(contextKey,succeededCallback, failedCallback, userContext) {
return this._invoke(Common.get_path(), 'PublicPreview',false,{contextKey:contextKey},succeededCallback,failedCallback,userContext); },
MeritAid:function(SCID,contextKey,edit,succeededCallback, failedCallback, userContext) {
return this._invoke(Common.get_path(), 'MeritAid',false,{SCID:SCID,contextKey:contextKey,edit:edit},succeededCallback,failedCallback,userContext); },
PosseListView:function(contextKey,succeededCallback, failedCallback, userContext) {
return this._invoke(Common.get_path(), 'PosseListView',false,{contextKey:contextKey},succeededCallback,failedCallback,userContext); },
DweebListView:function(contextKey,succeededCallback, failedCallback, userContext) {
return this._invoke(Common.get_path(), 'DweebListView',false,{contextKey:contextKey},succeededCallback,failedCallback,userContext); },
FeedBack:function(contextKey,succeededCallback, failedCallback, userContext) {
return this._invoke(Common.get_path(), 'FeedBack',false,{contextKey:contextKey},succeededCallback,failedCallback,userContext); },
JoinPosse:function(contextKey,PosseId,succeededCallback, failedCallback, userContext) {
return this._invoke(Common.get_path(), 'JoinPosse',false,{contextKey:contextKey,PosseId:PosseId},succeededCallback,failedCallback,userContext); },
AbusePosse:function(Posse,Url,succeededCallback, failedCallback, userContext) {
return this._invoke(Common.get_path(), 'AbusePosse',false,{Posse:Posse,Url:Url},succeededCallback,failedCallback,userContext); },
SendPosseToDweeb:function(contextKey,Posseid,hidnId,succeededCallback, failedCallback, userContext) {
return this._invoke(Common.get_path(), 'SendPosseToDweeb',false,{contextKey:contextKey,Posseid:Posseid,hidnId:hidnId},succeededCallback,failedCallback,userContext); },
InviteYourDweebs:function(contextKey,ToIds,Posseid,succeededCallback, failedCallback, userContext) {
return this._invoke(Common.get_path(), 'InviteYourDweebs',false,{contextKey:contextKey,ToIds:ToIds,Posseid:Posseid},succeededCallback,failedCallback,userContext); },
AddFeedBack:function(contextKey,subject,message,succeededCallback, failedCallback, userContext) {
return this._invoke(Common.get_path(), 'AddFeedBack',false,{contextKey:contextKey,subject:subject,message:message},succeededCallback,failedCallback,userContext); },
ReportUser:function(contextKey,succeededCallback, failedCallback, userContext) {
return this._invoke(Common.get_path(), 'ReportUser',false,{contextKey:contextKey},succeededCallback,failedCallback,userContext); },
AddFriend:function(contextKey,succeededCallback, failedCallback, userContext) {
return this._invoke(Common.get_path(), 'AddFriend',false,{contextKey:contextKey},succeededCallback,failedCallback,userContext); },
AcceptFriend:function(contextKey,succeededCallback, failedCallback, userContext) {
return this._invoke(Common.get_path(), 'AcceptFriend',false,{contextKey:contextKey},succeededCallback,failedCallback,userContext); },
GetCollegeRss:function(contextKey,succeededCallback, failedCallback, userContext) {
return this._invoke(Common.get_path(), 'GetCollegeRss',false,{contextKey:contextKey},succeededCallback,failedCallback,userContext); },
GetCollegeGoogleRss:function(contextKey,succeededCallback, failedCallback, userContext) {
return this._invoke(Common.get_path(), 'GetCollegeGoogleRss',false,{contextKey:contextKey},succeededCallback,failedCallback,userContext); },
GetStudentRss:function(contextKey,succeededCallback, failedCallback, userContext) {
return this._invoke(Common.get_path(), 'GetStudentRss',false,{contextKey:contextKey},succeededCallback,failedCallback,userContext); },
GetMajorCategory:function(search,succeededCallback, failedCallback, userContext) {
return this._invoke(Common.get_path(), 'GetMajorCategory',false,{search:search},succeededCallback,failedCallback,userContext); },
GetCollegeProfileMajorCategory:function(search,succeededCallback, failedCallback, userContext) {
return this._invoke(Common.get_path(), 'GetCollegeProfileMajorCategory',false,{search:search},succeededCallback,failedCallback,userContext); },
ReportAbuse:function(contextKey,itemID,itemUrl,abusetypeid,title,desc,succeededCallback, failedCallback, userContext) {
return this._invoke(Common.get_path(), 'ReportAbuse',false,{contextKey:contextKey,itemID:itemID,itemUrl:itemUrl,abusetypeid:abusetypeid,title:title,desc:desc},succeededCallback,failedCallback,userContext); },
GetExcludedWords:function(succeededCallback, failedCallback, userContext) {
return this._invoke(Common.get_path(), 'GetExcludedWords',false,{},succeededCallback,failedCallback,userContext); }}
Common.registerClass('Common',Sys.Net.WebServiceProxy);
Common._staticInstance = new Common();
Common.set_path = function(value) { Common._staticInstance._path = value; }
Common.get_path = function() { return Common._staticInstance._path; }
Common.set_timeout = function(value) { Common._staticInstance._timeout = value; }
Common.get_timeout = function() { return Common._staticInstance._timeout; }
Common.set_defaultUserContext = function(value) { Common._staticInstance._userContext = value; }
Common.get_defaultUserContext = function() { return Common._staticInstance._userContext; }
Common.set_defaultSucceededCallback = function(value) { Common._staticInstance._succeeded = value; }
Common.get_defaultSucceededCallback = function() { return Common._staticInstance._succeeded; }
Common.set_defaultFailedCallback = function(value) { Common._staticInstance._failed = value; }
Common.get_defaultFailedCallback = function() { return Common._staticInstance._failed; }
Common.set_path("/Common.asmx");
Common.CheckIfLoginValid= function(userId,login,onSuccess,onFailed,userContext) {Common._staticInstance.CheckIfLoginValid(userId,login,onSuccess,onFailed,userContext); }
Common.StudentBrief= function(contextKey,onSuccess,onFailed,userContext) {Common._staticInstance.StudentBrief(contextKey,onSuccess,onFailed,userContext); }
Common.PublicPreview= function(contextKey,onSuccess,onFailed,userContext) {Common._staticInstance.PublicPreview(contextKey,onSuccess,onFailed,userContext); }
Common.MeritAid= function(SCID,contextKey,edit,onSuccess,onFailed,userContext) {Common._staticInstance.MeritAid(SCID,contextKey,edit,onSuccess,onFailed,userContext); }
Common.PosseListView= function(contextKey,onSuccess,onFailed,userContext) {Common._staticInstance.PosseListView(contextKey,onSuccess,onFailed,userContext); }
Common.DweebListView= function(contextKey,onSuccess,onFailed,userContext) {Common._staticInstance.DweebListView(contextKey,onSuccess,onFailed,userContext); }
Common.FeedBack= function(contextKey,onSuccess,onFailed,userContext) {Common._staticInstance.FeedBack(contextKey,onSuccess,onFailed,userContext); }
Common.JoinPosse= function(contextKey,PosseId,onSuccess,onFailed,userContext) {Common._staticInstance.JoinPosse(contextKey,PosseId,onSuccess,onFailed,userContext); }
Common.AbusePosse= function(Posse,Url,onSuccess,onFailed,userContext) {Common._staticInstance.AbusePosse(Posse,Url,onSuccess,onFailed,userContext); }
Common.SendPosseToDweeb= function(contextKey,Posseid,hidnId,onSuccess,onFailed,userContext) {Common._staticInstance.SendPosseToDweeb(contextKey,Posseid,hidnId,onSuccess,onFailed,userContext); }
Common.InviteYourDweebs= function(contextKey,ToIds,Posseid,onSuccess,onFailed,userContext) {Common._staticInstance.InviteYourDweebs(contextKey,ToIds,Posseid,onSuccess,onFailed,userContext); }
Common.AddFeedBack= function(contextKey,subject,message,onSuccess,onFailed,userContext) {Common._staticInstance.AddFeedBack(contextKey,subject,message,onSuccess,onFailed,userContext); }
Common.ReportUser= function(contextKey,onSuccess,onFailed,userContext) {Common._staticInstance.ReportUser(contextKey,onSuccess,onFailed,userContext); }
Common.AddFriend= function(contextKey,onSuccess,onFailed,userContext) {Common._staticInstance.AddFriend(contextKey,onSuccess,onFailed,userContext); }
Common.AcceptFriend= function(contextKey,onSuccess,onFailed,userContext) {Common._staticInstance.AcceptFriend(contextKey,onSuccess,onFailed,userContext); }
Common.GetCollegeRss= function(contextKey,onSuccess,onFailed,userContext) {Common._staticInstance.GetCollegeRss(contextKey,onSuccess,onFailed,userContext); }
Common.GetCollegeGoogleRss= function(contextKey,onSuccess,onFailed,userContext) {Common._staticInstance.GetCollegeGoogleRss(contextKey,onSuccess,onFailed,userContext); }
Common.GetStudentRss= function(contextKey,onSuccess,onFailed,userContext) {Common._staticInstance.GetStudentRss(contextKey,onSuccess,onFailed,userContext); }
Common.GetMajorCategory= function(search,onSuccess,onFailed,userContext) {Common._staticInstance.GetMajorCategory(search,onSuccess,onFailed,userContext); }
Common.GetCollegeProfileMajorCategory= function(search,onSuccess,onFailed,userContext) {Common._staticInstance.GetCollegeProfileMajorCategory(search,onSuccess,onFailed,userContext); }
Common.ReportAbuse= function(contextKey,itemID,itemUrl,abusetypeid,title,desc,onSuccess,onFailed,userContext) {Common._staticInstance.ReportAbuse(contextKey,itemID,itemUrl,abusetypeid,title,desc,onSuccess,onFailed,userContext); }
Common.GetExcludedWords= function(onSuccess,onFailed,userContext) {Common._staticInstance.GetExcludedWords(onSuccess,onFailed,userContext); }
if (typeof(Common_AbuseType) === 'undefined') {
Common_AbuseType = function() { throw Error.invalidOperation(); }
Common_AbuseType.prototype = {TalentShowItem: 1,TalentShowProps: 2,PosseProps: 3,ColleProfileProps: 4,StudentProfileProps: 5,Forum: 6,PosseClub: 7}
Common_AbuseType.registerEnum('Common_AbuseType', true);
}
