📄 universalmanagerimpl.java
字号:
package com.cib.service.impl;import java.io.Serializable;import java.util.List;import org.apache.commons.logging.Log;import org.apache.commons.logging.LogFactory;import com.cib.dao.UniversalDao;import com.cib.service.UniversalManager;/** * Base class for Business Services - use this class for utility methods and * generic CRUD methods. * * @author <a href="mailto:matt@raibledesigns.com">Matt Raible</a> */public class UniversalManagerImpl implements UniversalManager { /** * Log instance for all child classes. Uses LogFactory.getLog(getClass()) from Commons Logging */ protected final Log log = LogFactory.getLog(getClass()); /** * UniversalDao instance, ready to charge forward and persist to the database */ protected UniversalDao dao; public void setDao(UniversalDao dao) { this.dao = dao; } /** * {@inheritDoc} */ public Object get(Class clazz, Serializable id) { return dao.get(clazz, id); } /** * {@inheritDoc} */ public List getAll(Class clazz) { return dao.getAll(clazz); } /** * {@inheritDoc} */ public void remove(Class clazz, Serializable id) { dao.remove(clazz, id); } /** * {@inheritDoc} */ public Object save(Object o) { return dao.save(o); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -