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

📄 authormanager.java

📁 个人blog struts_spring_hibernate
💻 JAVA
字号:
package com.weblog.service;import java.util.List;import com.weblog.model.Author;import com.weblog.dao.AuthorDao;public interface AuthorManager{    /**     * Retrieves all of the authors     */    public List getAuthors();    /**     * Gets author's information based on id.     * @param id the author's id     * @return author populated author object     */    public Author getAuthor( String id);    /**     * Saves a author's information     * @param author the object to be saved     */    public void saveAuthor(Author author);    /**     * Removes a author from the database by id     * @param id the author's id     */    public void removeAuthor( String id);}

⌨️ 快捷键说明

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