Package org.apache.openejb.jee.wls
Class TableMap
- java.lang.Object
-
- org.apache.openejb.jee.wls.TableMap
-
public class TableMap extends Object
Java class for table-map complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="table-map"> <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="field-map" type="{http://www.bea.com/ns/weblogic/90}field-map" maxOccurs="unbounded" minOccurs="0"/> <element name="verify-rows" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="verify-columns" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="optimistic-column" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="trigger-updates-optimistic-column" type="{http://www.bea.com/ns/weblogic/90}true-false" minOccurs="0"/> <element name="version-column-initial-value" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> </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<FieldMap>fieldMapprotected Stringidprotected StringoptimisticColumnprotected StringtableNameprotected BooleantriggerUpdatesOptimisticColumnprotected StringverifyColumnsprotected StringverifyRowsprotected BigIntegerversionColumnInitialValue
-
Constructor Summary
Constructors Constructor Description TableMap()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<FieldMap>getFieldMap()Gets the value of the fieldMap property.StringgetId()Gets the value of the id property.StringgetOptimisticColumn()Gets the value of the optimisticColumn property.StringgetTableName()Gets the value of the tableName property.BooleangetTriggerUpdatesOptimisticColumn()Gets the value of the triggerUpdatesOptimisticColumn property.StringgetVerifyColumns()Gets the value of the verifyColumns property.StringgetVerifyRows()Gets the value of the verifyRows property.BigIntegergetVersionColumnInitialValue()Gets the value of the versionColumnInitialValue property.voidsetId(String value)Sets the value of the id property.voidsetOptimisticColumn(String value)Sets the value of the optimisticColumn property.voidsetTableName(String value)Sets the value of the tableName property.voidsetTriggerUpdatesOptimisticColumn(Boolean value)Sets the value of the triggerUpdatesOptimisticColumn property.voidsetVerifyColumns(String value)Sets the value of the verifyColumns property.voidsetVerifyRows(String value)Sets the value of the verifyRows property.voidsetVersionColumnInitialValue(BigInteger value)Sets the value of the versionColumnInitialValue property.
-
-
-
Field Detail
-
tableName
protected String tableName
-
verifyRows
protected String verifyRows
-
verifyColumns
protected String verifyColumns
-
optimisticColumn
protected String optimisticColumn
-
triggerUpdatesOptimisticColumn
protected Boolean triggerUpdatesOptimisticColumn
-
versionColumnInitialValue
protected BigInteger versionColumnInitialValue
-
id
protected String id
-
-
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
-
getFieldMap
public List<FieldMap> getFieldMap()
Gets the value of the fieldMap 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 fieldMap property. For example, to add a new item, do as follows:getFieldMap().add(newItem);Objects of the following type(s) are allowed in the listFieldMap
-
getVerifyRows
public String getVerifyRows()
Gets the value of the verifyRows property.- Returns:
- possible object is
String
-
setVerifyRows
public void setVerifyRows(String value)
Sets the value of the verifyRows property.- Parameters:
value- allowed object isString
-
getVerifyColumns
public String getVerifyColumns()
Gets the value of the verifyColumns property.- Returns:
- possible object is
String
-
setVerifyColumns
public void setVerifyColumns(String value)
Sets the value of the verifyColumns property.- Parameters:
value- allowed object isString
-
getOptimisticColumn
public String getOptimisticColumn()
Gets the value of the optimisticColumn property.- Returns:
- possible object is
String
-
setOptimisticColumn
public void setOptimisticColumn(String value)
Sets the value of the optimisticColumn property.- Parameters:
value- allowed object isString
-
getTriggerUpdatesOptimisticColumn
public Boolean getTriggerUpdatesOptimisticColumn()
Gets the value of the triggerUpdatesOptimisticColumn property.- Returns:
- possible object is
Boolean
-
setTriggerUpdatesOptimisticColumn
public void setTriggerUpdatesOptimisticColumn(Boolean value)
Sets the value of the triggerUpdatesOptimisticColumn property.- Parameters:
value- allowed object isBoolean
-
getVersionColumnInitialValue
public BigInteger getVersionColumnInitialValue()
Gets the value of the versionColumnInitialValue property.- Returns:
- possible object is
BigInteger
-
setVersionColumnInitialValue
public void setVersionColumnInitialValue(BigInteger value)
Sets the value of the versionColumnInitialValue property.- Parameters:
value- allowed object isBigInteger
-
-