API Name: global.AbstractTransaction
gs.include("PrototypeServer");
var AbstractTransaction = Class.create();
AbstractTransaction.prototype = {
initialize : function(request, response, processor) {
this.request = request;
this.response = response;
this.processor = processor;
},
execute : function() {}
}