Package com.brienwheeler.svc.ledger.domain

Examples of com.brienwheeler.svc.ledger.domain.LedgerEntry


    @GracefulShutdown
  public LedgerEntry createLedgerEntry(User user, String detail)
  {
    DbValidationUtils.assertPersisted(user);
   
    LedgerEntry ledgerEntry = new LedgerEntry(user, detail);
    ledgerEntryDao.save(ledgerEntry);
    return ledgerEntry;
  }
View Full Code Here

TOP

Related Classes of com.brienwheeler.svc.ledger.domain.LedgerEntry

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.