org.apache.openejb.jee.wls
Class Table

java.lang.Object
  extended by org.apache.openejb.jee.wls.Table

public class Table
extends java.lang.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
protected  java.util.List<java.lang.String> dbmsColumn
           
protected  java.lang.String ejbRelationshipRoleName
           
protected  java.lang.String tableName
           
 
Constructor Summary
Table()
           
 
Method Summary
 java.util.List<java.lang.String> getDbmsColumn()
          Gets the value of the dbmsColumn property.
 java.lang.String getEjbRelationshipRoleName()
          Gets the value of the ejbRelationshipRoleName property.
 java.lang.String getTableName()
          Gets the value of the tableName property.
 void setEjbRelationshipRoleName(java.lang.String value)
          Sets the value of the ejbRelationshipRoleName property.
 void setTableName(java.lang.String value)
          Sets the value of the tableName property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

tableName

protected java.lang.String tableName

dbmsColumn

protected java.util.List<java.lang.String> dbmsColumn

ejbRelationshipRoleName

protected java.lang.String ejbRelationshipRoleName
Constructor Detail

Table

public Table()
Method Detail

getTableName

public java.lang.String getTableName()
Gets the value of the tableName property.

Returns:
possible object is String

setTableName

public void setTableName(java.lang.String value)
Sets the value of the tableName property.

Parameters:
value - allowed object is String

getDbmsColumn

public java.util.List<java.lang.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 a set method 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 list String


getEjbRelationshipRoleName

public java.lang.String getEjbRelationshipRoleName()
Gets the value of the ejbRelationshipRoleName property.

Returns:
possible object is String

setEjbRelationshipRoleName

public void setEjbRelationshipRoleName(java.lang.String value)
Sets the value of the ejbRelationshipRoleName property.

Parameters:
value - allowed object is String


Copyright © 1999-2011 The Apache OpenEJB development community. All Rights Reserved.