/* * @(#)EJBMailDaemon.java 1.00 3/3/2000 */ /* ***************************************************************************** Copyright 2000 by Erica Andrews (cylikon@hotmail.com). All rights reserved. ./ButchWhipAppeal/ ./IcedPinky/ NO portion of this software may be used in ANY way by anyone other than myself without my express written consent. If it is downloaded for testing, it must be deleted from your system within 24 hours. Any other use constitutes piracy and fraudulent misuse of this software, punishable in a court of law. Copyright 2000 by Erica Andrews. All rights reserved. ***************************************************************************** */ package cylikon.EJBMail; import java.rmi.*; import javax.ejb.*; /** * EJBMailDaemon interface. * @author Li'L CJ * @version 1.00 03/03/2000 */ public interface EJBMailDaemon extends EJBObject,Remote { String SendMail(String from, String subject, String message, String userinfo) throws RemoteException; }