Package org.apache.openejb.jee
Class AsyncMethod
- java.lang.Object
-
- org.apache.openejb.jee.AsyncMethod
-
public class AsyncMethod extends Object
ejb-jar_3_1.xsdJava class for async-methodType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="async-methodType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="method-name" type="{http://java.sun.com/xml/ns/javaee}string"/> <element name="method-params" type="{http://java.sun.com/xml/ns/javaee}method-paramsType" minOccurs="0"/> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringidprotected StringmethodNameprotected MethodParamsmethodParams
-
Constructor Summary
Constructors Constructor Description AsyncMethod()AsyncMethod(Method method)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()StringgetMethodName()MethodParamsgetMethodParams()voidsetId(String value)voidsetMethodName(String value)voidsetMethodParams(MethodParams value)
-
-
-
Field Detail
-
methodName
protected String methodName
-
methodParams
protected MethodParams methodParams
-
id
protected String id
-
-
Constructor Detail
-
AsyncMethod
public AsyncMethod()
-
AsyncMethod
public AsyncMethod(Method method)
-
-
Method Detail
-
getMethodName
public String getMethodName()
-
setMethodName
public void setMethodName(String value)
-
getMethodParams
public MethodParams getMethodParams()
-
setMethodParams
public void setMethodParams(MethodParams value)
-
getId
public String getId()
-
setId
public void setId(String value)
-
-