[jOOQ/jOOQ#10588] Fixed wrong XSD element name
This commit is contained in:
parent
e64a4279ff
commit
a127ec65ef
@ -41,7 +41,7 @@ public class SyntheticObjectsType implements Serializable, XMLAppendable
|
||||
@XmlElement(name = "uniqueKey")
|
||||
protected List<SyntheticUniqueKeyType> uniqueKeys;
|
||||
@XmlElementWrapper(name = "foreignKeys")
|
||||
@XmlElement(name = "primaryKey")
|
||||
@XmlElement(name = "foreignKey")
|
||||
protected List<SyntheticForeignKeyType> foreignKeys;
|
||||
|
||||
public List<SyntheticIdentityType> getIdentities() {
|
||||
@ -177,7 +177,7 @@ public class SyntheticObjectsType implements Serializable, XMLAppendable
|
||||
builder.append("identities", "identity", identities);
|
||||
builder.append("primaryKeys", "primaryKey", primaryKeys);
|
||||
builder.append("uniqueKeys", "uniqueKey", uniqueKeys);
|
||||
builder.append("foreignKeys", "primaryKey", foreignKeys);
|
||||
builder.append("foreignKeys", "foreignKey", foreignKeys);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@ -1007,7 +1007,7 @@ for Oracle.]]></jxb:javadoc></jxb:property></appinfo></annotation>
|
||||
|
||||
<complexType name="SyntheticForeignKeysType">
|
||||
<sequence>
|
||||
<element name="primaryKey" type="tns:SyntheticForeignKeyType" minOccurs="1" maxOccurs="unbounded"/>
|
||||
<element name="foreignKey" type="tns:SyntheticForeignKeyType" minOccurs="1" maxOccurs="unbounded"/>
|
||||
</sequence>
|
||||
</complexType>
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user