package haipham.webnntp.ejb.group;

import java.rmi.RemoteException;
import javax.ejb.*;

public interface UserGroup extends EJBObject{
    public String getName() throws RemoteException;
    public String getDescription() throws RemoteException;

    public void setName(String group) throws RemoteException;
    public void setDescription(String desc) throws RemoteException;
}
