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

📄 concreterole_hdr_0bcff8da.java

📁 j2ee源码
💻 JAVA
字号:
package com.leeman.wkexs.master.rolemgt.dao;import com.ibm.ws.ejbpersistence.beanextensions.*;import com.ibm.websphere.cpmi.*;/** * Bean implementation class for Enterprise Bean: Role_Hdr */public class ConcreteRole_Hdr_0bcff8da extends com.leeman.wkexs.master.rolemgt.dao.Role_HdrBean implements javax.ejb.EntityBean, ConcreteBean {	/**	 * setEntityContext	 */	public void setEntityContext(javax.ejb.EntityContext ctx) {		super.setEntityContext(ctx);		instanceExtension.setEntityContext(ctx);	}	/**	 * unsetEntityContext	 */	public void unsetEntityContext() {		super.unsetEntityContext();		instanceExtension.unsetEntityContext();	}	/**	 * ejbActivate	 */	public void ejbActivate() {			super.ejbActivate();			instanceExtension.ejbActivate();	}	/**	 * ejbLoad	 */	public void ejbLoad() {		instanceExtension.ejbLoad();	}	/**	 * ejbPassivate	 */	public void ejbPassivate() {		super.ejbPassivate();		instanceExtension.ejbPassivate();	}	/**	 * ejbRemove	 */	public void ejbRemove() throws javax.ejb.RemoveException {		super.ejbRemove();		instanceExtension.ejbRemove();	}	/**	 * ejbStore	 */	public void ejbStore() {		super.ejbStore();		instanceExtension.ejbStore();	}	private ConcreteBeanInstanceExtension instanceExtension;	/**	 * _WSCB_getInstanceInfo	 */	public PMConcreteBeanInstanceInfo _WSCB_getInstanceInfo() {			return instanceExtension;	}	/**	 * ConcreteRole_Hdr_0bcff8da	 */	public ConcreteRole_Hdr_0bcff8da() {		super();		instanceExtension = ConcreteBeanInstanceExtensionFactory.getInstance(this);	}	/**	 * getInjector	 */	private com.leeman.wkexs.master.rolemgt.dao.websphere_deploy.Role_HdrBeanInjector_0bcff8da getInjector() {		return (com.leeman.wkexs.master.rolemgt.dao.websphere_deploy.Role_HdrBeanInjector_0bcff8da)instanceExtension.getInjector();	}	/**	 * hydrate	 */	public void hydrate(Object inRecord) {			com.leeman.wkexs.master.rolemgt.dao.websphere_deploy.Role_HdrBeanCacheEntry_0bcff8da record = (com.leeman.wkexs.master.rolemgt.dao.websphere_deploy.Role_HdrBeanCacheEntry_0bcff8da) inRecord;;			company_id = record.getCompany_id();			role_id = record.getRole_id();			role_name = record.getRole_name();			create_by = record.getCreate_by();			create_dttm = record.getCreate_dttm();			last_modify_by = record.getLast_modify_by();			last_modify_dttm = record.getLast_modify_dttm();		super.ejbLoad();	}	/**	 * resetCMP	 */	public void resetCMP() {			company_id = null;			role_id = null;			role_name = null;			create_by = null;			create_dttm = null;			last_modify_by = null;			last_modify_dttm = null;	}	/**	 * resetCMR	 */	public void resetCMR() {	}	/**	 * ejbFindByPrimaryKey	 */	public com.leeman.wkexs.master.rolemgt.dao.Role_HdrKey ejbFindByPrimaryKey(com.leeman.wkexs.master.rolemgt.dao.Role_HdrKey primaryKey) throws javax.ejb.FinderException {		return (com.leeman.wkexs.master.rolemgt.dao.Role_HdrKey)instanceExtension.ejbFindByPrimaryKey(primaryKey);	}	/**	 * ejbFindByPrimaryKey	 */	public Object ejbFindByPrimaryKey(java.lang.Object pk) throws javax.ejb.FinderException {		return ejbFindByPrimaryKey((com.leeman.wkexs.master.rolemgt.dao.Role_HdrKey)pk);	}	/**	 * ejbFindByPrimaryKeyForCMR_Local	 */	public com.leeman.wkexs.master.rolemgt.dao.Role_HdrKey ejbFindByPrimaryKeyForCMR_Local(com.leeman.wkexs.master.rolemgt.dao.Role_HdrKey pk) throws javax.ejb.FinderException {		return (com.leeman.wkexs.master.rolemgt.dao.Role_HdrKey)instanceExtension.ejbFindByPrimaryKey(pk);	}	/**	 * ejbCreate	 */	public com.leeman.wkexs.master.rolemgt.dao.Role_HdrKey ejbCreate(java.lang.String company_id, java.lang.String role_id) throws javax.ejb.CreateException {		super.ejbCreate(company_id, role_id);		return (com.leeman.wkexs.master.rolemgt.dao.Role_HdrKey)instanceExtension.ejbCreate();	}	/**	 * ejbPostCreate	 */	public void ejbPostCreate(java.lang.String company_id, java.lang.String role_id) throws javax.ejb.CreateException {		super.ejbPostCreate(company_id, role_id);		instanceExtension.ejbPostCreate();	}	/**	 * createPrimaryKey	 */	public Object createPrimaryKey() {		com.leeman.wkexs.master.rolemgt.dao.Role_HdrKey pk = new com.leeman.wkexs.master.rolemgt.dao.Role_HdrKey();		pk.company_id = this.company_id;		pk.role_id = this.role_id;		return pk;	}	/**	 * getNumberOfFields	 */	public int getNumberOfFields() {		return 7;	}	/**	 * Implementation field for persistent attribute: company_id	 */	public java.lang.String company_id;	/**	 * Get accessor for persistent attribute: company_id	 */	public java.lang.String getCompany_id() {		return company_id;	}	/**	 * Set accessor for persistent attribute: company_id	 */	public void setCompany_id(java.lang.String newCompany_id) {		instanceExtension.markDirty(0,company_id,newCompany_id);		company_id = newCompany_id;	}	/**	 * Implementation field for persistent attribute: role_id	 */	public java.lang.String role_id;	/**	 * Get accessor for persistent attribute: role_id	 */	public java.lang.String getRole_id() {		return role_id;	}	/**	 * Set accessor for persistent attribute: role_id	 */	public void setRole_id(java.lang.String newRole_id) {		instanceExtension.markDirty(1,role_id,newRole_id);		role_id = newRole_id;	}	/**	 * Implementation field for persistent attribute: role_name	 */	public java.lang.String role_name;	/**	 * Get accessor for persistent attribute: role_name	 */	public java.lang.String getRole_name() {		return role_name;	}	/**	 * Set accessor for persistent attribute: role_name	 */	public void setRole_name(java.lang.String newRole_name) {		instanceExtension.markDirty(2,role_name,newRole_name);		role_name = newRole_name;	}	/**	 * Implementation field for persistent attribute: create_by	 */	public java.lang.String create_by;	/**	 * Get accessor for persistent attribute: create_by	 */	public java.lang.String getCreate_by() {		return create_by;	}	/**	 * Set accessor for persistent attribute: create_by	 */	public void setCreate_by(java.lang.String newCreate_by) {		instanceExtension.markDirty(3,create_by,newCreate_by);		create_by = newCreate_by;	}	/**	 * Implementation field for persistent attribute: create_dttm	 */	public java.util.Date create_dttm;	/**	 * Get accessor for persistent attribute: create_dttm	 */	public java.util.Date getCreate_dttm() {		return create_dttm;	}	/**	 * Set accessor for persistent attribute: create_dttm	 */	public void setCreate_dttm(java.util.Date newCreate_dttm) {		instanceExtension.markDirty(4,create_dttm,newCreate_dttm);		create_dttm = newCreate_dttm;	}	/**	 * Implementation field for persistent attribute: last_modify_by	 */	public java.lang.String last_modify_by;	/**	 * Get accessor for persistent attribute: last_modify_by	 */	public java.lang.String getLast_modify_by() {		return last_modify_by;	}	/**	 * Set accessor for persistent attribute: last_modify_by	 */	public void setLast_modify_by(java.lang.String newLast_modify_by) {		instanceExtension.markDirty(5,last_modify_by,newLast_modify_by);		last_modify_by = newLast_modify_by;	}	/**	 * Implementation field for persistent attribute: last_modify_dttm	 */	public java.util.Date last_modify_dttm;	/**	 * Get accessor for persistent attribute: last_modify_dttm	 */	public java.util.Date getLast_modify_dttm() {		return last_modify_dttm;	}	/**	 * Set accessor for persistent attribute: last_modify_dttm	 */	public void setLast_modify_dttm(java.util.Date newLast_modify_dttm) {		instanceExtension.markDirty(6,last_modify_dttm,newLast_modify_dttm);		last_modify_dttm = newLast_modify_dttm;	}}

⌨️ 快捷键说明

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