⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 businesslogic.java

📁 招标投标网上系统
💻 JAVA
字号:
/*
 * @(#)BusinessLogic.java 
 *
 * Copyright 2003 by SYNTC, All rights reserved.
 *
 * This software is the confidential and proprietary information of SYNTC.
 * ("Confidential Information").
 */

package cn.com.syntc.common.action;

import javax.servlet.http.*;
import cn.com.syntc.common.io.*;


/**
 * @title:        BusinessLogic <p>
 * @description:  定义业务逻辑的抽象方法 <p>
 * @authority:    Copyright (c) <p>
 * @company:      SYNTC <p>
 * @author:       wang yong <p>
 * @version:      1.0 <p>
 */
public abstract class BusinessLogic {
  /**
   * 定义业务逻辑的抽象方法(执行业务逻辑处理方法)
   */
  public abstract void execute(HttpServletRequest request, HttpServletResponse response, Parameters parameters) throws CommonException;

  /**
   * 定义业务逻辑的抽象方法(执行输入检测处理方法)
   */
  public abstract void validate(HttpServletRequest request, HttpServletResponse response, Parameters parameters) throws CommonException;
}

⌨️ 快捷键说明

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