Package ch.entwine.weblounge.common.impl.request

Examples of ch.entwine.weblounge.common.impl.request.DelegatingServletInputStream


   *
   * @see javax.servlet.ServletRequest#getInputStream()
   */
  public ServletInputStream getInputStream() {
    if (this.content != null) {
      return new DelegatingServletInputStream(new ByteArrayInputStream(this.content));
    } else {
      return null;
    }
  }
View Full Code Here

TOP

Related Classes of ch.entwine.weblounge.common.impl.request.DelegatingServletInputStream

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.