Package org.icatproject
Class CreateMany
- java.lang.Object
-
- org.icatproject.CreateMany
-
public class CreateMany extends Object
Java class for createMany complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="createMany"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="sessionId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="beans" type="{http://icatproject.org}entityBaseBean" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<EntityBaseBean>beansprotected StringsessionId
-
Constructor Summary
Constructors Constructor Description CreateMany()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<EntityBaseBean>getBeans()Gets the value of the beans property.StringgetSessionId()Gets the value of the sessionId property.voidsetSessionId(String value)Sets the value of the sessionId property.
-
-
-
Field Detail
-
sessionId
protected String sessionId
-
beans
protected List<EntityBaseBean> beans
-
-
Method Detail
-
getSessionId
public String getSessionId()
Gets the value of the sessionId property.- Returns:
- possible object is
String
-
setSessionId
public void setSessionId(String value)
Sets the value of the sessionId property.- Parameters:
value- allowed object isString
-
getBeans
public List<EntityBaseBean> getBeans()
Gets the value of the beans 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 Jakarta XML Binding object. This is why there is not a
setmethod for the beans property.For example, to add a new item, do as follows:
getBeans().add(newItem);Objects of the following type(s) are allowed in the list
EntityBaseBean
-
-