package haipham.webnntp.ejb.group;

import java.rmi.RemoteException;
import javax.ejb.*;

public interface UserGroupHome extends EJBHome{
    public UserGroup create(String name, String description) 
        throws CreateException, RemoteException;

    public UserGroup findByPrimaryKey(String group)
        throws FinderException, RemoteException;
}
