UserInfoService.java
资源名称:Myblog.rar [点击查看]
上传用户:wlfwy2004
上传日期:2016-12-12
资源大小:33978k
文件大小:1k
源码类别:
Jsp/Servlet
开发平台:
Java
- package com.opensource.blog.service;
- import com.opensource.blog.exception.BlogException;
- import com.opensource.blog.model.Blog;
- import com.opensource.blog.model.UserInfo;
- public interface UserInfoService {
- /**
- *
- * @param ui UserInfo
- * @return UserInfo
- * @throws BlogException
- */
- public UserInfo saveUserInfo(UserInfo ui) throws BlogException;
- /**
- *
- * @param id long
- * @return UserInfo
- */
- public UserInfo findUserInfoByID(long id);
- /**
- *
- * @param userName String
- * @return UserInfo
- */
- public UserInfo findUserInfoByUserName(String userName);
- /**
- *
- * @param email String
- * @return UserInfo
- */
- public UserInfo findUserInfoByEmail(String email);
- /**
- *
- * @param ui UserInfo
- * @param blog Blog
- * @return Object[]
- * @throws BlogException
- */
- public Object[] createUserAndBlog(UserInfo ui, Blog blog) throws BlogException;
- }