commend.java

来自「广州物价系统开发部分模块」· Java 代码 · 共 43 行

JAVA
43
字号
package gzwj.command;

import java.awt.List;
import java.io.IOException;

import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import gzwj.servlet.MainServlet;



public class Commend extends MainServlet{
	public Object context; 						//using this avariable to pass the formbean , it got from ServletConfig currentlly
	public ServletConfig config;				//not using yet
	public String DispatcherPage;				//the name of the jsp page which we want to included 
	public String DispatcherType;				//the type of dispatcher its (forward or redirect)
	public String loginState;					//state of login
	public String changepassword;               //for return the change the password result message
 
	/**
	 * @return the context
	 */
	public Object getContext() {
		return context;
	}

	/**
	 * @param context the context to set
	 */
	public void setContext(Object context) {
		this.context = context;
	}

	public Object perform() throws Exception {
		// TODO Auto-generated method stub
		return null;
	} 
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?