userdao.java

来自「一个用SPRING框架实现的J2EE应用,数据库是用MYSQL」· Java 代码 · 共 24 行

JAVA
24
字号
/*
 * JCatalog Project
 */
package catalog.model.dao;

import catalog.model.businessobject.User;

/**
 * The user DAO interface.
 * <p>
 * This class contains user management related data access logic.
 * 
 * @author <a href="mailto:derek_shen@hotmail.com">Derek Y. Shen</a>
 */
public interface UserDao {
	/**
	 * Get user by username.
	 * 
	 * @param username the username
	 * @return the user associated with the username
	 */
	public User getUser(String username);
}

⌨️ 快捷键说明

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