diff options
author | Maharajh, Robby (rx2202) <rx2202@att.com> | 2017-12-01 10:41:41 -0500 |
---|---|---|
committer | Maharajh, Robby (rx2202) <rx2202@att.com> | 2017-12-01 10:45:31 -0500 |
commit | 2e4f21dea97049f4de34fcfd789f461882e24602 (patch) | |
tree | 72696b56796bd32990bb9b3f241036d20e6ed550 /aai-schema/src | |
parent | 8dcb9900cae95a17ca6d029a665d512b3e7b11a2 (diff) |
Added support for Multiple Edges
Issue-ID: AAI-524
Change-Id: I33dd31315992e2efb2d6d390ffc523655b55a84c
Signed-off-by: Maharajh, Robby (rx2202) <rx2202@att.com>
Diffstat (limited to 'aai-schema/src')
-rw-r--r-- | aai-schema/src/main/resources/aai_schema/aai_schema_v12.xsd | 7 | ||||
-rw-r--r-- | aai-schema/src/main/resources/oxm/aai_oxm_v12.xml | 5 |
2 files changed, 12 insertions, 0 deletions
diff --git a/aai-schema/src/main/resources/aai_schema/aai_schema_v12.xsd b/aai-schema/src/main/resources/aai_schema/aai_schema_v12.xsd index 346a825c..9d25a6f6 100644 --- a/aai-schema/src/main/resources/aai_schema/aai_schema_v12.xsd +++ b/aai-schema/src/main/resources/aai_schema/aai_schema_v12.xsd @@ -150,6 +150,13 @@ xmlns:jaxb="http://java.sun.com/xml/ns/jaxb" </xs:appinfo> </xs:annotation> </xs:element> + <xs:element name="relationship-label" type="xs:string" minOccurs="0"> + <xs:annotation> + <xs:appinfo> + <annox:annotate target="field">@org.onap.aai.annotations.Metadata(description="The edge label for this relationship.")</annox:annotate> + </xs:appinfo> + </xs:annotation> + </xs:element> <xs:element name="related-link" type="xs:string" minOccurs="0"> <xs:annotation> <xs:appinfo> diff --git a/aai-schema/src/main/resources/oxm/aai_oxm_v12.xml b/aai-schema/src/main/resources/oxm/aai_oxm_v12.xml index 9f9b2131..008e7f9b 100644 --- a/aai-schema/src/main/resources/oxm/aai_oxm_v12.xml +++ b/aai-schema/src/main/resources/oxm/aai_oxm_v12.xml @@ -668,6 +668,11 @@ <xml-property name="description" value="A keyword provided by A&AI to indicate type of node." /> </xml-properties> </xml-element> + <xml-element java-attribute="relationshipLabel" name="relationship-label" type="java.lang.String"> + <xml-properties> + <xml-property name="description" value="The edge label for this relationship." /> + </xml-properties> + </xml-element> <xml-element java-attribute="relatedLink" name="related-link" type="java.lang.String"> <xml-properties> <xml-property name="description" value="URL to the object in A&AI." /> |