Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 510 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 510 Bytes

PaymentDocumentsSOAPWebService

Implementation of a SOAP Web Service with Spring

The service allows to perform CRUD operations on a set of payment documents.

PaymentDocument entity:

  • id (int, autogenerated)
  • purpose (string, not required, 255 symbols max)
  • amount (int)
  • source account (string, 10 symbols)
  • destination account (string, 10 symbols)

CRUD operations:

  • getPaymentDocumentById
  • addPaymentDocument
  • deletePaymentDocument
  • getAllPaymentDocuments

P.S. No database was used.