public class Method extends Object
Java class for methodType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="methodType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="description" type="{http://java.sun.com/xml/ns/javaee}descriptionType" maxOccurs="unbounded" minOccurs="0"/>
<element name="ejb-name" type="{http://java.sun.com/xml/ns/javaee}ejb-nameType"/>
<element name="method-intf" type="{http://java.sun.com/xml/ns/javaee}method-intfType" minOccurs="0"/>
<element name="method-name" type="{http://java.sun.com/xml/ns/javaee}method-nameType"/>
<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>
| Modifier and Type | Field and Description |
|---|---|
protected String |
className |
protected TextMap |
description |
protected String |
ejbName |
protected String |
id |
protected MethodIntf |
methodIntf |
protected String |
methodName |
protected MethodParams |
methodParams |
| Constructor and Description |
|---|
Method() |
Method(String ejbName,
Method method) |
Method(String ejbName,
String methodName) |
Method(String ejbName,
String methodName,
String... parameters) |
Method(String ejbName,
String className,
String methodName) |
Method(String ejbName,
String className,
String methodName,
String... parameters) |
| Modifier and Type | Method and Description |
|---|---|
String |
getClassName() |
String |
getDescription() |
Text[] |
getDescriptions() |
String |
getEjbName() |
String |
getId() |
MethodIntf |
getMethodIntf() |
String |
getMethodName() |
MethodParams |
getMethodParams() |
void |
setDescriptions(Text[] text) |
void |
setEjbName(String value)
The ejb-nameType specifies an enterprise bean's name.
|
void |
setId(String value) |
void |
setMethodIntf(MethodIntf value) |
void |
setMethodName(String value)
contains a name of an enterprise
bean method or the asterisk (*) character.
|
void |
setMethodParams(MethodParams value) |
Method |
withInterface(MethodIntf methodIntf) |
protected TextMap description
protected String ejbName
protected String className
protected MethodIntf methodIntf
protected String methodName
protected MethodParams methodParams
protected String id
public String getClassName()
public Text[] getDescriptions()
public void setDescriptions(Text[] text)
public String getDescription()
public String getEjbName()
public void setEjbName(String value)
public MethodIntf getMethodIntf()
public void setMethodIntf(MethodIntf value)
public Method withInterface(MethodIntf methodIntf)
public String getMethodName()
public void setMethodName(String value)
public MethodParams getMethodParams()
public void setMethodParams(MethodParams value)
public String getId()
public void setId(String value)
Copyright © 1999-2014 The Apache Software Foundation. All Rights Reserved.