Package org.apache.openejb.jee
Class LifecycleCallback
- java.lang.Object
-
- org.apache.openejb.jee.LifecycleCallback
-
- All Implemented Interfaces:
CallbackMethod
public class LifecycleCallback extends Object implements CallbackMethod
javaee6.xsdJava class for lifecycle-callbackType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="lifecycle-callbackType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="lifecycle-callback-class" type="{http://java.sun.com/xml/ns/javaee}fully-qualified-classType" minOccurs="0"/> <element name="lifecycle-callback-method" type="{http://java.sun.com/xml/ns/javaee}java-identifierType"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected StringlifecycleCallbackClassprotected StringlifecycleCallbackMethod
-
Constructor Summary
Constructors Constructor Description LifecycleCallback()LifecycleCallback(Method method)LifecycleCallback(String lifecycleCallbackClass, String lifecycleCallbackMethod)LifecycleCallback(NamedMethod method)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetClassName()StringgetLifecycleCallbackClass()StringgetLifecycleCallbackMethod()StringgetMethodName()voidsetLifecycleCallbackClass(String value)voidsetLifecycleCallbackMethod(String value)
-
-
-
Constructor Detail
-
LifecycleCallback
public LifecycleCallback()
-
LifecycleCallback
public LifecycleCallback(Method method)
-
LifecycleCallback
public LifecycleCallback(String lifecycleCallbackClass, String lifecycleCallbackMethod)
-
LifecycleCallback
public LifecycleCallback(NamedMethod method)
-
-
Method Detail
-
getLifecycleCallbackClass
public String getLifecycleCallbackClass()
-
setLifecycleCallbackClass
public void setLifecycleCallbackClass(String value)
-
getLifecycleCallbackMethod
public String getLifecycleCallbackMethod()
-
setLifecycleCallbackMethod
public void setLifecycleCallbackMethod(String value)
-
getClassName
public String getClassName()
- Specified by:
getClassNamein interfaceCallbackMethod
-
getMethodName
public String getMethodName()
- Specified by:
getMethodNamein interfaceCallbackMethod
-
-