aboutsummaryrefslogtreecommitdiffstats
path: root/aai-annotations/src
diff options
context:
space:
mode:
Diffstat (limited to 'aai-annotations/src')
-rw-r--r--aai-annotations/src/main/java/org/onap/aai/schema/enums/PropertyMetadata.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/aai-annotations/src/main/java/org/onap/aai/schema/enums/PropertyMetadata.java b/aai-annotations/src/main/java/org/onap/aai/schema/enums/PropertyMetadata.java
index 559501a7..8b28fc79 100644
--- a/aai-annotations/src/main/java/org/onap/aai/schema/enums/PropertyMetadata.java
+++ b/aai-annotations/src/main/java/org/onap/aai/schema/enums/PropertyMetadata.java
@@ -71,7 +71,13 @@ public enum PropertyMetadata {
* Add a private edge between two objects based on the uri provided by user which should provide
* the appropriate information from the url similar to dataCopy
*/
- PRIVATE_EDGE("privateEdge");
+ PRIVATE_EDGE("privateEdge"),
+
+ /**
+ * Checks if user's owning entity equals to pnf's owning entity (if it exists)
+ *
+ */
+ OWNER_CHECK("ownerCheck");
private final String name;