Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 19 20 package com.lutris.airsent.presentation; 21 22 import com.lutris.appserver.server.httpPresentation.*; 23 import com.lutris.appserver.server.session.*; 24 import com.lutris.util.*; 25 import org.enhydra.xml.xmlc.XMLObject; 26 import org.w3c.dom.*; 27 import org.w3c.dom.html.*; 28 import java.util.Date ; 29 import com.lutris.airsent.presentation.BasePO; 30 31 37 public class aboutAirSent extends BasePO { 38 39 42 private static final int AUTH_LEVEL = AirSentConstants.UNAUTH_USER; 43 44 50 public int getRequiredAuthLevel() { 51 return AUTH_LEVEL; 52 } 53 54 57 public XMLObject handleDefault() throws HttpPresentationException { 58 return showPage(null); 59 } 60 61 67 public XMLObject handleThrowException() throws Exception { 68 throw new Exception ("This is a test exception thrown from Login.java handleThrowException()"); 69 } 70 71 77 public XMLObject showPage(String errorMsg) 78 throws AirSentPresentationException { 79 aboutAirSentHTML page = 80 (aboutAirSentHTML) getComms().xmlcFactory.create(aboutAirSentHTML.class); 81 82 return page; 83 } 84 85 } 86 87
| Popular Tags
|