1 /*2 * JBoss, the OpenSource J2EE webOS3 * 4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 package org.jboss.ejb3.test.servicedependency;8 9 /**10 * A Account.11 * 12 * @author <a HREF="galder.zamarreno@jboss.com">Galder Zamarreno</a>13 * @version $Revision: 44023 $14 */15 public interface Account16 {17 public void debit(String account, int amount);18 }19