diff options
Diffstat (limited to 'vid-app-common')
4 files changed, 17 insertions, 16 deletions
diff --git a/vid-app-common/pom.xml b/vid-app-common/pom.xml index c0c4958d5..34699f98c 100755 --- a/vid-app-common/pom.xml +++ b/vid-app-common/pom.xml @@ -9,7 +9,7 @@ inherit from a parent maven module. --> <groupId>org.onap.vid</groupId> <artifactId>vid-app-common</artifactId> - <version>5.0.0-SNAPSHOT</version> + <version>5.0.1-SNAPSHOT</version> <packaging>war</packaging> <name>VID Common</name> <description>VID Common code for opensource version</description> diff --git a/vid-app-common/src/main/java/org/onap/vid/asdc/beans/tosca/Input.java b/vid-app-common/src/main/java/org/onap/vid/asdc/beans/tosca/Input.java index 7980ece5a..51766413f 100644 --- a/vid-app-common/src/main/java/org/onap/vid/asdc/beans/tosca/Input.java +++ b/vid-app-common/src/main/java/org/onap/vid/asdc/beans/tosca/Input.java @@ -3,6 +3,7 @@ * VID * ================================================================================ * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved. + * Modifications Copyright (C) 2019 IBM. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -31,16 +32,11 @@ import java.util.List; * The Class Input. */ public class Input { - - public Input(org.onap.sdc.toscaparser.api.parameters.Input input, List<Property> properties){ - this.type = input.getType(); - this.description = input.getDescription(); - this._default = input.getDefault(); - this.inputProperties = new InputProperties(properties); - this.fromInputName = input.getName(); - } - - /** The type. */ + + /** The entry schema. */ + private Input entry_schema; + + /** The type. */ private String type; /** The description. */ @@ -48,9 +44,6 @@ public class Input { /** The default. */ private Object _default; - - /** The entry schema. */ - private Input entry_schema; private InputProperties inputProperties; @@ -68,6 +61,14 @@ public class Input { private String templateInvariantUUID; private String templateCustomizationUUID; + public Input(org.onap.sdc.toscaparser.api.parameters.Input input, List<Property> properties){ + this.type = input.getType(); + this.description = input.getDescription(); + this._default = input.getDefault(); + this.inputProperties = new InputProperties(properties); + this.fromInputName = input.getName(); + } + /** * Instantiates a new input. */ diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/controller/aaiSubscriberController.js b/vid-app-common/src/main/webapp/app/vid/scripts/controller/aaiSubscriberController.js index 072adf305..e66b8ff6c 100755 --- a/vid-app-common/src/main/webapp/app/vid/scripts/controller/aaiSubscriberController.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/controller/aaiSubscriberController.js @@ -531,7 +531,7 @@ appDS2.controller("aaiSubscriberController", ["COMPONENT", "FIELD", "PARAMETER", $scope.isPermitted = first.isPermitted;
deferred.resolve(first.isPermitted);
} else {
- deferred.reject("some error while resolveIfIsPermitted")
+ deferred.reject("some error while resolveIfIsPermitted");
}
});
diff --git a/vid-app-common/version.properties b/vid-app-common/version.properties index 295674ed8..60ac15449 100755 --- a/vid-app-common/version.properties +++ b/vid-app-common/version.properties @@ -4,7 +4,7 @@ major=5 minor=0 -patch=0 +patch=1 base_version=${major}.${minor}.${patch} |