Package org.apache.openejb.jee
Class ConcurrentMethod
- java.lang.Object
-
- org.apache.openejb.jee.ConcurrentMethod
-
public class ConcurrentMethod extends Object
ejb-jar_3_1.xsdJava class for concurrent-methodType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="concurrent-methodType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="method" type="{http://java.sun.com/xml/ns/javaee}named-methodType"/> <element name="lock" type="{http://java.sun.com/xml/ns/javaee}concurrent-lock-typeType" minOccurs="0"/> <element name="access-timeout" type="{http://java.sun.com/xml/ns/javaee}access-timeoutType" 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 TimeoutaccessTimeoutprotected Stringidprotected ConcurrentLockTypelockprotected NamedMethodmethod
-
Constructor Summary
Constructors Constructor Description ConcurrentMethod()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TimeoutgetAccessTimeout()StringgetId()ConcurrentLockTypegetLock()NamedMethodgetMethod()voidsetAccessTimeout(Timeout value)voidsetId(String value)voidsetLock(ConcurrentLockType value)voidsetMethod(NamedMethod value)
-
-
-
Field Detail
-
method
protected NamedMethod method
-
lock
protected ConcurrentLockType lock
-
accessTimeout
protected Timeout accessTimeout
-
id
protected String id
-
-
Method Detail
-
getMethod
public NamedMethod getMethod()
-
setMethod
public void setMethod(NamedMethod value)
-
getLock
public ConcurrentLockType getLock()
-
setLock
public void setLock(ConcurrentLockType value)
-
getAccessTimeout
public Timeout getAccessTimeout()
-
setAccessTimeout
public void setAccessTimeout(Timeout value)
-
getId
public String getId()
-
setId
public void setId(String value)
-
-