|
From: Pelle B. <pe...@us...> - 2004-03-29 23:55:02
|
Update of /cvsroot/neuclear/neuclear-ledger/src/java/org/neuclear/ledger In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21675/src/java/org/neuclear/ledger Added Files: LedgerController.java Log Message: The servlets now work and display the ledger contents. --- NEW FILE: LedgerController.java --- package org.neuclear.ledger; /* NeuClear Distributed Transaction Clearing Platform (C) 2003 Pelle Braendgaard This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA $Id: LedgerController.java,v 1.1 2004/03/29 23:43:29 pelle Exp $ $Log: LedgerController.java,v $ Revision 1.1 2004/03/29 23:43:29 pelle The servlets now work and display the ledger contents. */ /** * User: pelleb * Date: Mar 29, 2004 * Time: 9:35:30 PM */ public class LedgerController { public Ledger add(String id){ return null; } public Ledger get(String id) { return null; } public boolean exists(String id){ return false; } } |