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

📄 service.java

📁 该源码包括了基于J2EE的数据持久层设计,设计中使用了DAO,Service,等模式,并在Struts下进行了测试.
💻 JAVA
字号:
package org.conference.datapersistence.Service;

import java.util.List;

import org.conference.datapersistence.Bo.ConferenceVO;
import org.conference.datapersistence.Bo.UserVO;

public interface Service {
   public  String  FindUserPasswordbyUserid(String userid) throws ServiceException;
   public  List    FindConferencebyMultiple(ConferenceVO conference) throws ServiceException;
   public  int     insertConferenceInfo(ConferenceVO conference) throws ServiceException;
   public  int     NewUserRegistration(UserVO user) throws ServiceException;
   public  List    FindAllConferenceInfo()  throws ServiceException;
   public  int     UpdateUserInfobyUserid(UserVO user)  throws ServiceException;
   public  List    FindTopnConferenceInfo(int n) throws ServiceException;
   public  Object  FindConferencebyId(int id)  throws ServiceException;
   public  Object  FindUserDetailInfobyName(String name) throws ServiceException;
   public  String  Finduserbyusername(String name) throws ServiceException;
   public  List  Finduserbymyinterest(String interestname,int myid) throws ServiceException;
}

⌨️ 快捷键说明

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