KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > nightlabs > ipanema > accounting > LocalAccountant


1 /*
2  * Created on Feb 17, 2005
3  * by alex
4  *
5  */

6 package com.nightlabs.ipanema.accounting;
7
8 import com.nightlabs.ipanema.trade.LegalEntity;
9
10 /**
11  * @author Alexander Bieber <alex[AT]nightlabs[DOT]de>
12  *
13  * @jdo.persistence-capable
14  * identity-type = "application"
15  * persistence-capable-superclass = "com.nightlabs.ipanema.accounting.Accountant"
16  * detachable = "true"
17  *
18  * @jdo.inheritance strategy = "new-table"
19  */

20 //TODO: change inheritence strategy to "no-table"
21
public class LocalAccountant extends Accountant {
22
23     /**
24      *
25      */

26     public LocalAccountant() {
27         super();
28     }
29
30     /**
31      * @param organisationID
32      * @param accountantID
33      */

34     public LocalAccountant(String JavaDoc organisationID, String JavaDoc accountantID) {
35         super(organisationID, accountantID);
36     }
37
38     /**
39      * @see com.nightlabs.ipanema.accounting.Accountant#bookTransfer(com.nightlabs.ipanema.trade.LegalEntity, com.nightlabs.ipanema.accounting.MoneyTransfer)
40      */

41     public void bookTransfer(LegalEntity mandator, MoneyTransfer transfer) {
42     }
43
44 }
45
Popular Tags