org.openejb.xml.ns.pkgen_2
public class: SqlGeneratorType [javadoc |
source]
java.lang.Object
org.openejb.xml.ns.pkgen_2.SqlGeneratorType
Indicates that an arbitrary SQL statement should be used to
generate the next ID.
Java class for sql-generatorType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="sql-generatorType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="sql" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="return-type" type="{http://www.w3.org/2001/XMLSchema}string"/>
</sequence>
</restriction>
</complexContent>
</complexType>
Field Summary |
---|
protected String | sql | |
protected String | returnType | |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from org.openejb.xml.ns.pkgen_2.SqlGeneratorType Detail: |
public String getReturnType() {
return returnType;
}
Gets the value of the returnType property. |
public String getSql() {
return sql;
}
Gets the value of the sql property. |
public void setReturnType(String value) {
this.returnType = value;
}
Sets the value of the returnType property. |
public void setSql(String value) {
this.sql = value;
}
Sets the value of the sql property. |