diff options
Diffstat (limited to 'aai-annotations')
-rw-r--r-- | aai-annotations/pom.xml | 2 | ||||
-rw-r--r-- | aai-annotations/src/main/java/org/onap/aai/schema/enums/PropertyMetadata.java | 8 |
2 files changed, 8 insertions, 2 deletions
diff --git a/aai-annotations/pom.xml b/aai-annotations/pom.xml index 9b794df2..bc4ebb9e 100644 --- a/aai-annotations/pom.xml +++ b/aai-annotations/pom.xml @@ -27,7 +27,7 @@ <parent> <groupId>org.onap.aai.aai-common</groupId> <artifactId>aai-parent</artifactId> - <version>1.7.0-SNAPSHOT</version> + <version>1.7.1-SNAPSHOT</version> <relativePath>../aai-parent/pom.xml</relativePath> </parent> <artifactId>aai-annotations</artifactId> 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; |