userserviceimpl.java
来自「自己写的一个JSF例子 希望大家下后不要说写的不好」· Java 代码 · 共 34 行
JAVA
34 行
package com.model.service.impl;
import com.model.service.IUserService;
import java.util.List;
import com.model.exception.UserException;
import com.web.bo.User;
//创建 IUserService 接口的实现 UserServiceImpl 类
public class UserServiceImpl implements IUserService {
public User login(String username,String password)throws UserException{
return null;
}
public boolean logout() throws UserException {
// TODO Auto-generated method stub
return false;
}
public boolean register(User user) throws UserException {
// TODO Auto-generated method stub
return false;
}
public boolean delete(Integer uid) throws UserException {
// TODO Auto-generated method stub
return false;
}
public boolean edit(User user) throws UserException {
// TODO Auto-generated method stub
return false;
}
public List browse() throws UserException {
// TODO Auto-generated method stub
return null;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?