Processing Log UML


Added On:  02/13/12 
SQL Table:  PROCESSING_LOG 
Module:  UniCharge 
Type:  Entity  Status:  Active 
Java Class:  ProcessingLog 
Financial transactions log, which records each systems' attempt to process any financial transaction with a Provider.
The primary purposes of this object is to analyze rebill process. Each transaction is represented with a Transaction object. When multiple attempts (rebills) are made for a single transaction, these attempts are recorded within Processing Log. For simplicity, the original (first) attempt is recorded as well.
Added On:  02/13/12
SQL Column:  ATTEMPT_COUNT
Java Field:  attemptCount
Status:  Active
SQL Type:  int(11)
Java Type:  Integer
Attributes:
The number of attempts available.
Added On:  06/17/16
SQL Column:  CHARGE_TRANSACTION_FK
Java Field:  chargeTransaction
Status:  Active
SQL Type:  bigint(20)
Java Type:  Long
References Charge Transaction
Attributes:
Reference to the entity that represents real-time financial transaction.
Added On:  02/13/12
SQL Column:  ID
Java Field:  id
Status:  Active
SQL Type:  bigint(20)
Java Type:  Long
Identifier / Primary Key
Attributes: Unique, Required
Identifier of the object used for references; auto-incremented integer value.
Added On:  02/13/12
SQL Column:  IS_FINAL_ATTEMPT
Java Field:  isFinalAttempt
Status:  Active
SQL Type:  tinyint(1)
Java Type:  Boolean
Attributes: Default:true
Indicates whether the attempt is final.
Added On:  02/13/12
SQL Column:  MERCHANT_ACCOUNT_CODE
Java Field:  merchantAccountCode
Status:  Active
SQL Type:  int(11)
Java Type:  Integer
Attributes: Required
Code of Merchant Account to which instance of this object is attributed to. Depending on the context, Merchant Account Code field may contain either Merchant Code or Merchant Account Code.
The field is primarily used for data partitioning and data management, to make it easy to determine the ownership of a record within the database.
Added On:  02/13/12
SQL Column:  PROCESSING_PROFILE_FK
Java Field:  processingProfile
Status:  Active
SQL Type:  bigint(20)
Java Type:  Long
References Processing Profile
Attributes:
Reference to the entity that represents Provider specific merchant account. Encapsulates all information necessary to identify a merchant in Provider's system.
Billing Profile may also contain configuration values defining system's behavior for this specific configuration.
Added On:  02/13/12
SQL Column:  PROVIDER_RESPONSE_CODE
Java Field:  providerResponseCode
Status:  Active
SQL Type:  varchar(255)
Java Type:  String
Attributes:
The response code of the processor.
Added On:  02/13/12
SQL Column:  REQUEST_DATE
Java Field:  requestDate
Status:  Active
SQL Type:  datetime
Java Type:  Date
Attributes:
The date of processing log request.
Added On:  02/13/12
SQL Column:  RESPONSE_CODE
Java Field:  responseCode
Status:  Active
SQL Type:  varchar(255)
Java Type:  String
Attributes:
Gateway generated response code.
Added On:  02/13/12
SQL Column:  RESPONSE_DATE
Java Field:  responseDate
Status:  Active
SQL Type:  datetime
Java Type:  Date
Attributes:
The date of response.
Added On:  02/13/12
SQL Column:  RESPONSE_MESSAGE
Java Field:  responseMessage
Status:  Active
SQL Type:  varchar(255)
Java Type:  String
Attributes:
Gateway generated response message.
Added On:  02/13/12
SQL Column:  RESPONSE_TYPE_CL
Java Field:  responseTypeCl
Status:  Active
SQL Type:  varchar(255)
Java Type:  String
Attributes:
Enumeration of possible values of processing log types.
Added On:  06/25/12
SQL Column:  SUB_BATCH_FK
Java Field:  subBatch
Status:  Active
SQL Type:  bigint(20)
Java Type:  Long
References Sub Batch
Attributes:
Reference to the entity that represents a sub-group of transactions within Batch or Retail Cycle.