1 32 33 package scioworks.imap.presentation; 34 35 import com.lutris.appserver.server.httpPresentation.*; 36 37 import scioworks.imap.presentation.base.BasePO; 38 39 public class login extends BasePO { 40 41 protected boolean isLoginRequired() { 43 return false; 44 } 45 46 public String handleDefault() throws HttpPresentationException { 47 48 loginHTML page = (loginHTML)m_comms.xmlcFactory.create(loginHTML.class); 49 50 page.getElementErrorText().getParentNode().removeChild(page.getElementErrorText()); 51 52 return page.toDocument(); 53 } 54 55 } 56 | Popular Tags |