package com.oreilly.jent.ejb.beanManaged;
/*
* This example is from the book "Java Enterprise in a Nutshell", 2nd ed.
* Copyright (c) 1999,2001 by O'Reilly & Associates.
* You may distribute this source code for non-commercial purposes only.
* You may study, modify, and use this example for any purpose, as long as
* this notice is retained. Note that this example is provided "as is",
* WITHOUT WARRANTY of any kind either expressed or implied.
*/
import javax.ejb.EJBLocalObject;
public interface ProfileLocal extends EJBLocalObject {
public String getName();
public String getEntry(String name);
public void setEntry(String name, String value);
}
|