Skip to content
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.

Commit

Permalink
Fix 5geve-intersite new library.
Browse files Browse the repository at this point in the history
  • Loading branch information
TheWall89 committed Jan 12, 2021
1 parent bc19ea0 commit c75f644
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ public List<VsdNsdTranslationRule> compose(Nsd expNsd,
log.error(m);
throw new TransRuleInvalidException(m);
}
VsdNsdTranslationRule newTr = new VsdNsdTranslationRule(tr.getInput(),
VsdNsdTranslationRule newTr = new VsdNsdTranslationRule(
tr.getInput(),
null,
expNsd.getNsdIdentifier(), expNsd.getVersion(), tr.getNsFlavourId(),
tr.getNsInstantiationLevelId());
try {
Expand Down
5 changes: 4 additions & 1 deletion src/main/java/it/cnit/blueprint/composer/vsb/VsbService.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package it.cnit.blueprint.composer.vsb;

import it.nextworks.nfvmano.catalogue.blueprint.elements.Blueprint;
import it.nextworks.nfvmano.catalogue.blueprint.elements.SliceServiceType;
import it.nextworks.nfvmano.catalogue.blueprint.elements.VsbEndpoint;
import it.nextworks.nfvmano.catalogue.blueprint.elements.VsbLink;
import java.util.List;
Expand All @@ -19,7 +20,9 @@ public void addMgmtConnServ(Blueprint b) {
"sap_" + b.getBlueprintId() + "_mgmt",
true,
true,
false
false,
null,
null
);
b.getEndPoints().add(mgmtSap);
List<String> mgmtEps = b.getEndPoints().stream()
Expand Down

0 comments on commit c75f644

Please sign in to comment.