Package org.apache.openejb.jee.wls
Class Table
- java.lang.Object
-
- org.apache.openejb.jee.wls.Table
-
public class Table extends Object
Java class for table complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="table"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="table-name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="dbms-column" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/> <element name="ejb-relationship-role-name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<String>dbmsColumnprotected StringejbRelationshipRoleNameprotected StringtableName
-
Constructor Summary
Constructors Constructor Description Table()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>getDbmsColumn()Gets the value of the dbmsColumn property.StringgetEjbRelationshipRoleName()Gets the value of the ejbRelationshipRoleName property.StringgetTableName()Gets the value of the tableName property.voidsetEjbRelationshipRoleName(String value)Sets the value of the ejbRelationshipRoleName property.voidsetTableName(String value)Sets the value of the tableName property.
-
-
-
Method Detail
-
getTableName
public String getTableName()
Gets the value of the tableName property.- Returns:
- possible object is
String
-
setTableName
public void setTableName(String value)
Sets the value of the tableName property.- Parameters:
value- allowed object isString
-
getDbmsColumn
public List<String> getDbmsColumn()
Gets the value of the dbmsColumn 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 dbmsColumn property. For example, to add a new item, do as follows:getDbmsColumn().add(newItem);Objects of the following type(s) are allowed in the listString
-
getEjbRelationshipRoleName
public String getEjbRelationshipRoleName()
Gets the value of the ejbRelationshipRoleName property.- Returns:
- possible object is
String
-
-