Name

sn_oe_sfs.VACommonLinkAdapter

Description

No description available

Script

var VACommonLinkAdapter = Class.create();

VACommonLinkAdapter.prototype = Object.extendsObject(VACommonAdapterBase,{

  initialize: function(adapter, inputBuilder) {
      VACommonAdapterBase.prototype.initialize.call(this, adapter, inputBuilder, this.type);
  },

  transform: function() {
      try {
          return this.adapter.buildLinkResponse();
      } catch (e) {
          this.logger.error("Error in common link adapter transform() : " + e.message);
          throw e;
      }
  },

  type: 'VACommonLinkAdapter'
});

Sys ID

bd8cad5d1b6919105583ea48624bcbc4

Offical Documentation

Official Docs: