📄 concreteusers_789ae0b4.java
字号:
package com.leeman.wkexs.master.users.dao;import com.ibm.ws.ejbpersistence.beanextensions.*;import com.ibm.websphere.cpmi.*;/** * Bean implementation class for Enterprise Bean: Users */public class ConcreteUsers_789ae0b4 extends com.leeman.wkexs.master.users.dao.UsersBean 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; } /** * ConcreteUsers_789ae0b4 */ public ConcreteUsers_789ae0b4() { super(); instanceExtension = ConcreteBeanInstanceExtensionFactory.getInstance(this); } /** * getInjector */ private com.leeman.wkexs.master.users.dao.websphere_deploy.UsersBeanInjector_789ae0b4 getInjector() { return (com.leeman.wkexs.master.users.dao.websphere_deploy.UsersBeanInjector_789ae0b4)instanceExtension.getInjector(); } /** * hydrate */ public void hydrate(Object inRecord) { com.leeman.wkexs.master.users.dao.websphere_deploy.UsersBeanCacheEntry_789ae0b4 record = (com.leeman.wkexs.master.users.dao.websphere_deploy.UsersBeanCacheEntry_789ae0b4) inRecord;; company_id = record.getCompany_id(); user_id = record.getUser_id(); name = record.getName(); password = record.getPassword(); active = record.getActive(); role_id = record.getRole_id(); dept_id = record.getDept_id(); position = record.getPosition(); approval_password = record.getApproval_password(); create_by = record.getCreate_by(); create_dttm = record.getCreate_dttm(); last_modify_by = record.getLast_modify_by(); last_modify_dttm = record.getLast_modify_dttm(); email = record.getEmail(); telephone = record.getTelephone(); fax = record.getFax(); super.ejbLoad(); } /** * resetCMP */ public void resetCMP() { company_id = null; user_id = null; name = null; password = null; active = null; role_id = null; dept_id = null; position = null; approval_password = null; create_by = null; create_dttm = null; last_modify_by = null; last_modify_dttm = null; email = null; telephone = null; fax = null; } /** * resetCMR */ public void resetCMR() { } /** * ejbFindByPrimaryKey */ public com.leeman.wkexs.master.users.dao.UsersKey ejbFindByPrimaryKey(com.leeman.wkexs.master.users.dao.UsersKey primaryKey) throws javax.ejb.FinderException { return (com.leeman.wkexs.master.users.dao.UsersKey)instanceExtension.ejbFindByPrimaryKey(primaryKey); } /** * ejbFindByPrimaryKey */ public Object ejbFindByPrimaryKey(java.lang.Object pk) throws javax.ejb.FinderException { return ejbFindByPrimaryKey((com.leeman.wkexs.master.users.dao.UsersKey)pk); } /** * ejbFindByPrimaryKeyForCMR_Local */ public com.leeman.wkexs.master.users.dao.UsersKey ejbFindByPrimaryKeyForCMR_Local(com.leeman.wkexs.master.users.dao.UsersKey pk) throws javax.ejb.FinderException { return (com.leeman.wkexs.master.users.dao.UsersKey)instanceExtension.ejbFindByPrimaryKey(pk); } /** * ejbCreate */ public com.leeman.wkexs.master.users.dao.UsersKey ejbCreate(java.lang.String company_id, java.lang.String user_id) throws javax.ejb.CreateException { super.ejbCreate(company_id, user_id); return (com.leeman.wkexs.master.users.dao.UsersKey)instanceExtension.ejbCreate(); } /** * ejbPostCreate */ public void ejbPostCreate(java.lang.String company_id, java.lang.String user_id) throws javax.ejb.CreateException { super.ejbPostCreate(company_id, user_id); instanceExtension.ejbPostCreate(); } /** * createPrimaryKey */ public Object createPrimaryKey() { com.leeman.wkexs.master.users.dao.UsersKey pk = new com.leeman.wkexs.master.users.dao.UsersKey(); pk.company_id = this.company_id; pk.user_id = this.user_id; return pk; } /** * getNumberOfFields */ public int getNumberOfFields() { return 16; } /** * 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: user_id */ public java.lang.String user_id; /** * Get accessor for persistent attribute: user_id */ public java.lang.String getUser_id() { return user_id; } /** * Set accessor for persistent attribute: user_id */ public void setUser_id(java.lang.String newUser_id) { instanceExtension.markDirty(1,user_id,newUser_id); user_id = newUser_id; } /** * Implementation field for persistent attribute: name */ public java.lang.String name; /** * Get accessor for persistent attribute: name */ public java.lang.String getName() { return name; } /** * Set accessor for persistent attribute: name */ public void setName(java.lang.String newName) { instanceExtension.markDirty(2,name,newName); name = newName; } /** * Implementation field for persistent attribute: password */ public java.lang.String password; /** * Get accessor for persistent attribute: password */ public java.lang.String getPassword() { return password; } /** * Set accessor for persistent attribute: password */ public void setPassword(java.lang.String newPassword) { instanceExtension.markDirty(3,password,newPassword); password = newPassword; } /** * Implementation field for persistent attribute: active */ public java.lang.String active; /** * Get accessor for persistent attribute: active */ public java.lang.String getActive() { return active; } /** * Set accessor for persistent attribute: active */ public void setActive(java.lang.String newActive) { instanceExtension.markDirty(4,active,newActive); active = newActive; } /** * 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(5,role_id,newRole_id); role_id = newRole_id; } /** * Implementation field for persistent attribute: dept_id */ public java.lang.String dept_id; /** * Get accessor for persistent attribute: dept_id */ public java.lang.String getDept_id() { return dept_id; } /** * Set accessor for persistent attribute: dept_id */ public void setDept_id(java.lang.String newDept_id) { instanceExtension.markDirty(6,dept_id,newDept_id); dept_id = newDept_id; } /** * Implementation field for persistent attribute: position */ public java.lang.String position; /** * Get accessor for persistent attribute: position */ public java.lang.String getPosition() { return position; } /** * Set accessor for persistent attribute: position */ public void setPosition(java.lang.String newPosition) { instanceExtension.markDirty(7,position,newPosition); position = newPosition; } /** * Implementation field for persistent attribute: approval_password */ public java.lang.String approval_password; /** * Get accessor for persistent attribute: approval_password */ public java.lang.String getApproval_password() { return approval_password; } /** * Set accessor for persistent attribute: approval_password */ public void setApproval_password(java.lang.String newApproval_password) { instanceExtension.markDirty(8,approval_password,newApproval_password); approval_password = newApproval_password; } /** * 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(9,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(10,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(11,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(12,last_modify_dttm,newLast_modify_dttm); last_modify_dttm = newLast_modify_dttm; } /** * Implementation field for persistent attribute: email */ public java.lang.String email; /** * Get accessor for persistent attribute: email */ public java.lang.String getEmail() { return email; } /** * Set accessor for persistent attribute: email */ public void setEmail(java.lang.String newEmail) { instanceExtension.markDirty(13,email,newEmail); email = newEmail; } /** * Implementation field for persistent attribute: telephone */ public java.lang.String telephone; /** * Get accessor for persistent attribute: telephone */ public java.lang.String getTelephone() { return telephone; } /** * Set accessor for persistent attribute: telephone */ public void setTelephone(java.lang.String newTelephone) { instanceExtension.markDirty(14,telephone,newTelephone); telephone = newTelephone; } /** * Implementation field for persistent attribute: fax */ public java.lang.String fax; /** * Get accessor for persistent attribute: fax */ public java.lang.String getFax() { return fax; } /** * Set accessor for persistent attribute: fax */ public void setFax(java.lang.String newFax) { instanceExtension.markDirty(15,fax,newFax); fax = newFax; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -