KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > jguard > jee > authentication > http > HttpSessionSimulator


1 package net.sf.jguard.jee.authentication.http;
2
3 import javax.servlet.ServletContext JavaDoc;
4
5 public class HttpSessionSimulator extends
6         com.kizna.servletunit.HttpSessionSimulator {
7
8     ServletContext JavaDoc servletContext = null;
9     
10     public ServletContext JavaDoc getServletContext() {
11         return servletContext;
12     }
13
14     public void setServletContext(ServletContext JavaDoc servletContext) {
15         this.servletContext = servletContext;
16     }
17
18
19 }
20
Popular Tags