Package org.apache.openejb.jee
Class AroundTimeout
- java.lang.Object
-
- org.apache.openejb.jee.AroundTimeout
-
- All Implemented Interfaces:
CallbackMethod
public class AroundTimeout extends Object implements CallbackMethod
ejb-jar_3_1.xsdJava class for around-timeoutType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="around-timeoutType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="class" type="{http://java.sun.com/xml/ns/javaee}fully-qualified-classType" minOccurs="0"/> <element name="method-name" type="{http://java.sun.com/xml/ns/javaee}java-identifierType"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringclazzprotected StringmethodName
-
Constructor Summary
Constructors Constructor Description AroundTimeout()AroundTimeout(Method method)AroundTimeout(String clazz, String methodName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetClassName()StringgetClazz()StringgetMethodName()voidsetClazz(String value)voidsetMethodName(String value)
-
-
-
Method Detail
-
getClazz
public String getClazz()
-
setClazz
public void setClazz(String value)
-
getMethodName
public String getMethodName()
- Specified by:
getMethodNamein interfaceCallbackMethod
-
setMethodName
public void setMethodName(String value)
-
getClassName
public String getClassName()
- Specified by:
getClassNamein interfaceCallbackMethod
-
-