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

📄 userfactory.java

📁 OR Mapping工具
💻 JAVA
字号:
package org.ephman.examples.user;import java.sql.*;import org.ephman.abra.database.*;import org.ephman.abra.utils.*;import org.ephman.examples.user.generated.*;public class UserFactory extends AbstractUserFactory {		private static UserFactory theInstance;	public static synchronized UserFactory getInstance () {		if (theInstance == null)			theInstance = new UserFactory ();		return theInstance;	}	public User getByUserId (DatabaseSession dbSess, String userId) throws SQLException {		return (User)super.getObject (dbSess, super.userId, userId);	}	protected void preStorage (DatabaseSession dbSess, Identified item) throws SQLException {		User user = (User)item;		if (user.getCompany () != null) {			CompanyFactory.getInstance().store (dbSess, user.getCompany ());		}	}		protected void deepRetrieval (DatabaseSession dbSess, Identified item) throws SQLException {		User user = (User)item;		user.setCompany(CompanyFactory.getInstance().getByOid (dbSess, user.getCompanyOid()));	}}

⌨️ 快捷键说明

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