home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-06-23 | 595 b | 27 lines |
- package symantec.sourcebook.creditcheck;
-
- import java.io.*;
- import javax.servlet.*;
- import javax.servlet.http.*;
-
- public class PageData
- {
- HttpServletRequest request;
- HttpServletResponse response;
- ServletConfig config;
- String messageText;
- String ccName;
- String ccTotal;
- String successCGI;
- String ccNumber;
- String orderId;
-
- public PageData(ServletConfig config,HttpServletRequest request,HttpServletResponse response)
- {
- this.config = config;
- this.request = request;
- this.response = response;
- }
-
-
- }