diff options
author | Amichai Hemli <ah0398@intl.att.com> | 2017-08-22 11:39:50 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-08-22 11:39:50 +0000 |
commit | 4ac14d639a982999b543b3cc5eb8ff1b03f8c2e9 (patch) | |
tree | 7cf0272e8f7f9d5a178a86602fb7677779055d11 /vid-app-common/src | |
parent | de2bd2e58fed9641160aaac276bf385ffd7f8588 (diff) | |
parent | 295ce8d188eb7d7529df07280d4cfd51d0ce71af (diff) |
Merge "fix typo in SubResourcess class"
Diffstat (limited to 'vid-app-common/src')
-rwxr-xr-x | vid-app-common/src/main/java/org/openecomp/vid/asdc/beans/SubResource.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vid-app-common/src/main/java/org/openecomp/vid/asdc/beans/SubResource.java b/vid-app-common/src/main/java/org/openecomp/vid/asdc/beans/SubResource.java index 6d7fb41b1..6967b2c89 100755 --- a/vid-app-common/src/main/java/org/openecomp/vid/asdc/beans/SubResource.java +++ b/vid-app-common/src/main/java/org/openecomp/vid/asdc/beans/SubResource.java @@ -88,7 +88,7 @@ public class SubResource { *
* @return the resoucre type
*/
- public String getResoucreType() {
+ public String getResourceType() {
return resourceType;
}
@@ -151,7 +151,7 @@ public class SubResource { *
* @param resourceType the new resoucre type
*/
- public void setResoucreType(String resourceType) {
+ public void setResourceType(String resourceType) {
this.resourceType = resourceType;
}
|