📄 iuserdao.java
字号:
package com.esri.solutions.jitk.personalization.dao;
/**
* @author Derek Sedlmyer
* @version 1.0
* @created 05-Nov-2007 10:29:36 AM
*
* The interface used to persist and retrieve User Records to the database. Includes various
* Select, Insert, Update, and Delete methods.
*/
public interface IUserDAO {
/**
* Insert a single User record into the database.
* @param bookmark
*/
public void insert(UserRecord user) throws PersonalizationDAOException;
/**
* Selects a single User record based on the input User Id and returns
* the information as a UserRecord.
* @param id
*/
public UserRecord selectOne(String id) throws PersonalizationDAOException;
/**
* Updates a single User record. All fields will be updated based on the
* UserRecord passed in.
* @param bookmark
*/
public void update(UserRecord user) throws PersonalizationDAOException;
/**
* Deletes a single User record based on input User Id.
* @param id
*/
public void delete(String id) throws PersonalizationDAOException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -