@@ -84,8 +84,8 @@ public async Task<bool> TryFetchThumbnail(Aas.IAssetAdministrationShell aas)
84
84
// try
85
85
try
86
86
{
87
- await PackageHttpDownloadUtil . HttpGetToMemoryStream (
88
- sourceUri : PackageContainerHttpRepoSubset . BuildUriForAasThumbnail ( _defaultRepoBaseUri , aas . Id ) ,
87
+ await PackageHttpDownloadUtil . HttpGetToMemoryStreamOLD (
88
+ sourceUri : PackageContainerHttpRepoSubset . BuildUriForRepoAasThumbnail ( _defaultRepoBaseUri , aas . Id ) ,
89
89
runtimeOptions : _runtimeOptions ,
90
90
lambdaDownloadDone : ( ms , contentFn ) =>
91
91
{
@@ -129,11 +129,11 @@ await PackageHttpDownloadUtil.HttpGetToMemoryStream(
129
129
Aas . IIdentifiable res = null ;
130
130
131
131
// build the location
132
- var loc = PackageContainerHttpRepoSubset . BuildUriForSubmodel ( _defaultRepoBaseUri , id ) ;
132
+ var loc = PackageContainerHttpRepoSubset . BuildUriForRepoSingleSubmodel ( _defaultRepoBaseUri , id ) ;
133
133
if ( loc == null )
134
134
return null ;
135
135
136
- await PackageHttpDownloadUtil . HttpGetToMemoryStream (
136
+ await PackageHttpDownloadUtil . HttpGetToMemoryStreamOLD (
137
137
sourceUri : loc ,
138
138
allowFakeResponses : _runtimeOptions ? . AllowFakeResponses ?? false ,
139
139
runtimeOptions : _runtimeOptions ,
@@ -317,15 +317,15 @@ public async Task<int> TrySaveAllTaintedIdentifiables(
317
317
318
318
if ( allAas ) count += await TrySaveAllTaintedIdentifiablesOf < Aas . IAssetAdministrationShell > (
319
319
_aasEnv ? . AssetAdministrationShells ,
320
- ( defBase , id ) => PackageContainerHttpRepoSubset . BuildUriForAAS ( defBase , id ) ) ;
320
+ ( defBase , id ) => PackageContainerHttpRepoSubset . BuildUriForRepoSingleAAS ( defBase , id ) ) ;
321
321
322
322
if ( allSubmodels ) count += await TrySaveAllTaintedIdentifiablesOf < Aas . ISubmodel > (
323
323
_aasEnv ? . Submodels ,
324
- ( defBase , id ) => PackageContainerHttpRepoSubset . BuildUriForSubmodel ( defBase , id ) ) ;
324
+ ( defBase , id ) => PackageContainerHttpRepoSubset . BuildUriForRepoSingleSubmodel ( defBase , id ) ) ;
325
325
326
326
if ( allCDs ) count += await TrySaveAllTaintedIdentifiablesOf < Aas . IConceptDescription > (
327
327
_aasEnv ? . ConceptDescriptions ,
328
- ( defBase , id ) => PackageContainerHttpRepoSubset . BuildUriForCD ( defBase , id ) ) ;
328
+ ( defBase , id ) => PackageContainerHttpRepoSubset . BuildUriForRepoSingleCD ( defBase , id ) ) ;
329
329
330
330
return count ;
331
331
}
0 commit comments