aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/java/org/openecomp
diff options
context:
space:
mode:
authorLiang Ding <liang.ding@intel.com>2019-01-29 00:08:58 -0800
committerOfir Sonsino <ofir.sonsino@intl.att.com>2019-02-20 13:37:03 +0000
commitd23fb0f9e149f132907230270713b1d81ced8ffb (patch)
treea16fe72668033cac24060e1cae7afbe5eb7eb825 /catalog-be/src/main/java/org/openecomp
parent92bbb4db28eb1ca6b99304a046d5990149ac55af (diff)
fix a typo
VfModuleArtifacGenerator -> VfModuleArtifactGenerator Change-Id: I58fa51c74974adef1f32c52eb3eee61fb56cb2ee Issue-ID: SDC-2087 Signed-off-by: Liang Ding <liang.ding@intel.com>
Diffstat (limited to 'catalog-be/src/main/java/org/openecomp')
-rw-r--r--catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ServiceBusinessLogic.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ServiceBusinessLogic.java b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ServiceBusinessLogic.java
index b426d66598..e9c46cadcf 100644
--- a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ServiceBusinessLogic.java
+++ b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ServiceBusinessLogic.java
@@ -1522,7 +1522,7 @@ public class ServiceBusinessLogic extends ComponentBusinessLogic {
List<ArtifactGenerator<ArtifactDefinition>> asList = new ArrayList<>();
if (ri.getOriginType() == OriginTypeEnum.VF) {
- asList = Arrays.asList(new VfModuleArtifacGenerator(modifier, ri, service, shouldLock, inTransaction));
+ asList = Arrays.asList(new VfModuleArtifactGenerator(modifier, ri, service, shouldLock, inTransaction));
}
return asList;
}
@@ -1723,7 +1723,7 @@ public class ServiceBusinessLogic extends ComponentBusinessLogic {
}
- class VfModuleArtifacGenerator extends ArtifactGenerator<ArtifactDefinition> {
+ class VfModuleArtifactGenerator extends ArtifactGenerator<ArtifactDefinition> {
private User user;
private ComponentInstance componentInstance;
private Service service;
@@ -1735,7 +1735,7 @@ public class ServiceBusinessLogic extends ComponentBusinessLogic {
return generateVfModuleInstanceArtifact(user, componentInstance, service, shouldLock, inTransaction);
}
- private VfModuleArtifacGenerator(User user, ComponentInstance componentInstance, Service service, boolean shouldLock, boolean inTransaction) {
+ private VfModuleArtifactGenerator(User user, ComponentInstance componentInstance, Service service, boolean shouldLock, boolean inTransaction) {
super();
this.user = user;
this.componentInstance = componentInstance;