Package org.apache.openejb.jee.wls
Class ContextRequestClass
- java.lang.Object
-
- org.apache.openejb.jee.wls.ContextRequestClass
-
public class ContextRequestClass extends Object
Java class for context-request-class complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="context-request-class"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="context-case" type="{http://www.bea.com/ns/weblogic/90}context-case" maxOccurs="unbounded"/> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<ContextCase>contextCaseprotected Stringidprotected Stringname
-
Constructor Summary
Constructors Constructor Description ContextRequestClass()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ContextCase>getContextCase()Gets the value of the contextCase property.StringgetId()Gets the value of the id property.StringgetName()Gets the value of the name property.voidsetId(String value)Sets the value of the id property.voidsetName(String value)Sets the value of the name property.
-
-
-
Field Detail
-
name
protected String name
-
contextCase
protected List<ContextCase> contextCase
-
id
protected String id
-
-
Method Detail
-
getName
public String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(String value)
Sets the value of the name property.- Parameters:
value- allowed object isString
-
getContextCase
public List<ContextCase> getContextCase()
Gets the value of the contextCase property. This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not asetmethod for the contextCase property. For example, to add a new item, do as follows:getContextCase().add(newItem);Objects of the following type(s) are allowed in the listContextCase
-
-