1 56 57 58 package org.hamletsoft.enhydra.cactus.data; 59 60 import javax.servlet.*; 61 import javax.servlet.http.*; 62 import com.lutris.appserver.server.httpPresentation.HttpPresentationComms; 63 import org.apache.cactus.server.AbstractWebImplicitObjects; 64 import org.hamletsoft.enhydra.cactus.spec.*; 65 66 67 76 public class EnhydraAppImplicitObjectsImpl extends AbstractWebImplicitObjects implements EnhydraAppImplicitObjects{ 77 80 protected HttpPresentationComms comms; 81 82 85 public HttpPresentationComms getPresentationComms () { 86 return this.comms; 87 } 88 89 92 public void setHttpPresentationComms (HttpPresentationComms theComms) { 93 this.comms = theComms; 94 } 95 96 public void setHttpServletRequest(HttpServletRequest request) 97 98 { 99 super.setHttpServletRequest(request); 100 } 101 102 } 103 104 105 106 | Popular Tags |