addNamespace("JVCms.ServerSide");
JVCms.ServerSide.SSRePost_class = Class.create();
JVCms.ServerSide.SSRePost_class.prototype = (new AjaxPro.Request()).extend({
	AddNewRePost: function(contentGuid, userName, displayName, postBody, callback) {
		return this.invoke("AddNewRePost", {"contentGuid":contentGuid, "userName":userName, "displayName":displayName, "postBody":postBody}, callback);
	},
	SetPostActive: function(postGuid, isActive, callback) {
		return this.invoke("SetPostActive", {"postGuid":postGuid, "isActive":isActive}, callback);
	},
	Delete: function(postGuid, callback) {
		return this.invoke("Delete", {"postGuid":postGuid}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/JVCms.ServerSide.SSRePost,JVCms.ServerSide.ashx";
	}
})
JVCms.ServerSide.SSRePost = new JVCms.ServerSide.SSRePost_class();


