diff options
author | Vlastimil Starec <vlastimil.starec@orange.com> | 2020-04-08 09:55:07 +0200 |
---|---|---|
committer | Vlastimil Starec <vlastimil.starec@orange.com> | 2020-04-08 09:58:15 +0200 |
commit | 914607b1b05fc50e5769fbdbf59cb17c2ace3628 (patch) | |
tree | 12cdd72db3f12f2c188df2e9d7f5372345b21146 /aai-schema/src/main | |
parent | edbe717b32787b1b3cdb979cc0e54410e5b1dd0f (diff) |
Fix element name discrepancy in schema v19
CamelCase format of te-link-attribute(s) should be TeLinkAttribute(s),
but is TELinkAttribute(s) in aai_oxm_v19.xml.
Issue-ID: AAI-2771
Signed-off-by: Vlastimil Starec <vlastimil.starec@orange.com>
Change-Id: Ibcc9c8cd5b44f198eca3ebfa726051ded1af0a11
Diffstat (limited to 'aai-schema/src/main')
-rw-r--r-- | aai-schema/src/main/resources/onap/oxm/v19/aai_oxm_v19.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/aai-schema/src/main/resources/onap/oxm/v19/aai_oxm_v19.xml b/aai-schema/src/main/resources/onap/oxm/v19/aai_oxm_v19.xml index 076cc2e..e0ca8f9 100644 --- a/aai-schema/src/main/resources/onap/oxm/v19/aai_oxm_v19.xml +++ b/aai-schema/src/main/resources/onap/oxm/v19/aai_oxm_v19.xml @@ -3553,7 +3553,7 @@ <xml-element java-attribute="extAaiNetworks" name="ext-aai-networks" type="inventory.aai.onap.org.v19.ExtAaiNetworks"/> <xml-element java-attribute="labelRestrictions" name="label-restrictions" type="inventory.aai.onap.org.v19.LabelRestrictions"/> <xml-element java-attribute="unis" name="unis" type="inventory.aai.onap.org.v19.Unis"/> - <xml-element java-attribute="teLinkAttributes" name="te-link-attributes" type="inventory.aai.onap.org.v19.TELinkAttributes"/> + <xml-element java-attribute="teLinkAttributes" name="te-link-attributes" type="inventory.aai.onap.org.v19.TeLinkAttributes"/> <xml-element java-attribute="interlayerAttachments" name="interlayer-attachments" type="inventory.aai.onap.org.v19.InterlayerAttachments"/> <xml-element java-attribute="tunnelTerminationPoints" name="tunnel-termination-points" type="inventory.aai.onap.org.v19.TunnelTerminationPoints"/> </java-attributes> @@ -9131,16 +9131,16 @@ </xml-properties> </java-type> - <java-type name="TELinkAttributes"> + <java-type name="TeLinkAttributes"> <xml-properties> <xml-property name="description" value="Collection of TE link attributes."/> </xml-properties> <xml-root-element name="te-link-attributes"/> <java-attributes> - <xml-element container-type="java.util.ArrayList" java-attribute="teLinkAttribute" name="te-link-attribute" type="inventory.aai.onap.org.v19.TELinkAttribute"/> + <xml-element container-type="java.util.ArrayList" java-attribute="teLinkAttribute" name="te-link-attribute" type="inventory.aai.onap.org.v19.TeLinkAttribute"/> </java-attributes> </java-type> - <java-type name="TELinkAttribute"> + <java-type name="TeLinkAttribute"> <xml-root-element name="te-link-attribute"/> <java-attributes> <xml-element java-attribute="id" name="id" required="true" type="java.lang.String" xml-key="true"> |