📄 users_x6q1bk_homeimpl.java
字号:
/**
* This code was automatically generated at 9:07:32 on 2007-7-17
* by weblogic.ejb20.ejbc.Ejb2Rmi -- do not edit.
*
* @version WebLogic Server 8.1 SP4 Sat Jan 8 02:45:14 PST 2005 485534
* @author Copyright (c) 2007 by BEA Systems, Inc. All Rights Reserved.
*/
package software;
import weblogic.ejb20.interfaces.WLEnterpriseBean;
public final class users_x6q1bk_HomeImpl
extends weblogic.ejb20.internal.EntityEJBHome
implements software.usersRemoteHome, weblogic.utils.PlatformConstants
, weblogic.ejb.QueryHome
{
public weblogic.ejb20.internal.MethodDescriptor md_eo_getName;
public weblogic.ejb20.internal.MethodDescriptor md_eo_getId;
public weblogic.ejb20.internal.MethodDescriptor md_eo_getPwd;
public weblogic.ejb20.internal.MethodDescriptor md_eo_setName_S;
public weblogic.ejb20.internal.MethodDescriptor md_eo_setPwd_S;
public weblogic.ejb20.internal.MethodDescriptor md_ejbCreate_ISS;
public weblogic.ejb20.internal.MethodDescriptor md_ejbFindByPrimaryKey_I;
public weblogic.ejb20.internal.MethodDescriptor md_ejbFindAll;
public weblogic.ejb20.internal.MethodDescriptor md_ejbFindLogin_SS;
private static java.lang.reflect.Method mth_ejbCreate_ISS;
private static java.lang.reflect.Method mth_postejbCreate_ISS;
public weblogic.ejb20.internal.MethodDescriptor md_eo_remove;
public weblogic.ejb20.internal.MethodDescriptor md_ejbRemove_javax_ejb_Handle;
public weblogic.ejb20.internal.MethodDescriptor md_ejbRemove_O;
static {
try {
mth_ejbCreate_ISS = users_x6q1bk_Intf.class.getMethod(
"ejbCreate", new Class [] {java.lang.Integer.class, java.lang.String.class, java.lang.String.class});
if (true) {
mth_postejbCreate_ISS = users_x6q1bk_Intf.class.getMethod(
"ejbPostCreate", new Class [] {java.lang.Integer.class, java.lang.String.class, java.lang.String.class});
}
} catch (Exception e) {
throw new AssertionError("Unable to find expected "+
"methods. Please check your classpath for stale versions of "+
"your ejb classes and re-run weblogic.ejbc");
}
}
public users_x6q1bk_HomeImpl() {
super(users_x6q1bk_EOImpl.class
, java.lang.Integer.class);
}
public software.usersRemote create (java.lang.Integer arg0,java.lang.String arg1,java.lang.String arg2)
throws javax.ejb.CreateException, java.rmi.RemoteException
{
try {
return (software.usersRemote) super.create(md_ejbCreate_ISS,
mth_ejbCreate_ISS, mth_postejbCreate_ISS,
new Object [] { arg0, arg1, arg2});
} catch (java.lang.Exception e) {
if (e instanceof java.rmi.RemoteException) {
throw (java.rmi.RemoteException)e;
}
else if (e instanceof javax.ejb.CreateException) {
throw (javax.ejb.CreateException) e;
}
else {
throw new javax.ejb.CreateException ("Error while creating bean: " +
e.toString());
}
}
}
public software.usersRemote findByPrimaryKey(java.lang.Integer arg0)
throws javax.ejb.FinderException, java.rmi.RemoteException
{
try {
return (software.usersRemote)
super.findByPrimaryKey(md_ejbFindByPrimaryKey_I, arg0 );
} catch (java.lang.Exception e) {
if (e instanceof java.rmi.RemoteException) {
throw (java.rmi.RemoteException)e;
}
else if (e instanceof javax.ejb.FinderException) {
throw (javax.ejb.FinderException) e;
}
else {
throw new javax.ejb.FinderException ("Error while finding bean: " +
e.toString());
}
}
}
public java.util.Collection findAll()
throws javax.ejb.FinderException, java.rmi.RemoteException
{
try {
return (java.util.Collection)
super.finder(md_ejbFindAll, new Object [] { } , weblogic.ejb20.internal.EntityEJBHome.COLL_FINDER);
} catch (java.lang.Exception e) {
if (e instanceof java.rmi.RemoteException) {
throw (java.rmi.RemoteException)e;
}
else if (e instanceof javax.ejb.FinderException) {
throw (javax.ejb.FinderException) e;
}
else {
throw new javax.ejb.FinderException ("Error while finding bean: " +
e.toString());
}
}
}
public java.util.Collection findLogin(java.lang.String arg0,java.lang.String arg1)
throws javax.ejb.FinderException, java.rmi.RemoteException
{
try {
return (java.util.Collection)
super.finder(md_ejbFindLogin_SS, new Object [] { arg0, arg1} , weblogic.ejb20.internal.EntityEJBHome.COLL_FINDER);
} catch (java.lang.Exception e) {
if (e instanceof java.rmi.RemoteException) {
throw (java.rmi.RemoteException)e;
}
else if (e instanceof javax.ejb.FinderException) {
throw (javax.ejb.FinderException) e;
}
else {
throw new javax.ejb.FinderException ("Error while finding bean: " +
e.toString());
}
}
}
public void remove(java.lang.Object pk)
throws java.rmi.RemoteException, javax.ejb.RemoveException
{
super.remove(md_ejbRemove_O, pk);
}
public void remove(javax.ejb.Handle h)
throws java.rmi.RemoteException, javax.ejb.RemoveException
{
super.remove(md_ejbRemove_javax_ejb_Handle, h);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -