Name
sn_oe_sfs.VACommonImageAdapter
Description
No description available
Script
var VACommonImageAdapter = Class.create();
VACommonImageAdapter.prototype = {
initialize: function(channel, inputBuilder) {
this.channel = channel;
this.inputBuilder = inputBuilder;
this.logger = new sn_oe_sfs.VACommonLogger(this.inputBuilder.getChannelLogger(), 'VACommonCardAdapter');
this.logger.debug("VACommonImageAdapter channel: " + JSON.stringify(this.channel) + " \n inputs: " + JSON.stringify(inputBuilder));
},
transform: function() {
try {
return this.channel.buildImageResponse();
} catch (e) {
this.logger.error("Error in common image adapter transform() : " + e.message);
throw e;
}
},
type: 'VACommonImageAdapter'
};
Sys ID
58ee541a734c111065afe3d29f148b99