// retrieve payment type from reference
String paymentTypeString =
sibsReference.substring(SibsPaymentFileConstants.FIELD_REFERENCE_PAYMENT_CODE_BEGIN_INDEX,
SibsPaymentFileConstants.FIELD_REFERENCE_PAYMENT_CODE_END_INDEX);
SibsPaymentType paymentType = SibsPaymentType.fromCode(new Integer(paymentTypeString));
sibsFileEntries.add(new SibsPaymentFileEntry(year, studentNumber, paymentType, new Timestamp(transactionDate
.getTime()), value, sibsFile, SibsPaymentStatus.NOT_PROCESSED_PAYMENT));
}