FileDocCategorySizeDatePackage
EjbInitInfo.javaAPI DocGlassfish v2 API3221Fri May 04 22:31:20 BST 2007com.sun.enterprise.deployment

EjbInitInfo

public class EjbInitInfo extends Object implements Serializable
Contains information about a stateful session bean init method.

Fields Summary
private static com.sun.enterprise.util.LocalStringManagerImpl
localStrings
static Logger
_logger
private com.sun.enterprise.deployment.MethodDescriptor
beanMethod
private com.sun.enterprise.deployment.MethodDescriptor
createMethod
Constructors Summary
Methods Summary
public com.sun.enterprise.deployment.MethodDescriptorgetBeanMethod()


       
        return beanMethod;
    
public com.sun.enterprise.deployment.MethodDescriptorgetCreateMethod()

        return createMethod;
    
public voidsetBeanMethod(com.sun.enterprise.deployment.MethodDescriptor method)

        beanMethod = method;
    
public voidsetCreateMethod(com.sun.enterprise.deployment.MethodDescriptor method)

        createMethod = method;
    
public java.lang.StringtoString()

        StringBuffer sb = new StringBuffer();
        sb.append("bean method = " + beanMethod + "\t");
        sb.append("create method = " + createMethod + "\t");
        return sb.toString();