org.openejb.xml.ns.pkgen_2
public class: SequenceTableType [javadoc |
source]
java.lang.Object
org.openejb.xml.ns.pkgen_2.SequenceTableType
Indicates that a separate table holds a list of table name/ID
pairs and the server should fetch the next ID from that table.
Java class for sequence-tableType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="sequence-tableType">
<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="sequence-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="batch-size" type="{http://www.w3.org/2001/XMLSchema}int"/>
</sequence>
</restriction>
</complexContent>
</complexType>
Field Summary |
---|
protected String | tableName | |
protected String | sequenceName | |
protected int | batchSize | |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from org.openejb.xml.ns.pkgen_2.SequenceTableType Detail: |
public int getBatchSize() {
return batchSize;
}
Gets the value of the batchSize property. |
public String getSequenceName() {
return sequenceName;
}
Gets the value of the sequenceName property. |
public String getTableName() {
return tableName;
}
Gets the value of the tableName property. |
public void setBatchSize(int value) {
this.batchSize = value;
}
Sets the value of the batchSize property. |
public void setSequenceName(String value) {
this.sequenceName = value;
}
Sets the value of the sequenceName property. |
public void setTableName(String value) {
this.tableName = value;
}
Sets the value of the tableName property. |