Name

sn_oe_sfs.VACommonDateAdapter

Description

No description available

Script

var VACommonDateAdapter = Class.create();

  VACommonDateAdapter.prototype = Object.extendsObject(VACommonAdapterBase,{

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

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

  type: 'VACommonDateAdapter'
});

Sys ID

11e9ac411b69d5105583ea48624bcbd0

Offical Documentation

Official Docs: