import ws.*;

public class p_Logout
{
  public WTableList Request(WServer oServer, WParamList oParamList)
  { 
    WTableList oTableList;
 
    oTableList = new WTableList(oServer);

    oServer.Logout();

    oServer.SetPage("p_Login");

    return oTableList; 
  }
}
