Skip to content

Commit

Permalink
feat(impl):[#259] remove owned field from Batches
Browse files Browse the repository at this point in the history
  • Loading branch information
ds-ext-kmassalski committed Dec 20, 2023
1 parent 0b4f667 commit 809840a
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@
import org.eclipse.tractusx.irs.aaswrapper.job.ItemDataRequest;
import org.eclipse.tractusx.irs.aaswrapper.job.RequestMetric;
import org.eclipse.tractusx.irs.common.JobProcessingFinishedEvent;
import org.eclipse.tractusx.irs.common.auth.SecurityHelperService;
import org.eclipse.tractusx.irs.common.persistence.BlobPersistence;
import org.eclipse.tractusx.irs.common.persistence.BlobPersistenceException;
import org.eclipse.tractusx.irs.component.AsyncFetchedItems;
import org.eclipse.tractusx.irs.component.Bpn;
import org.eclipse.tractusx.irs.component.FetchedItems;
Expand All @@ -69,8 +70,6 @@
import org.eclipse.tractusx.irs.connector.job.MultiTransferJob;
import org.eclipse.tractusx.irs.connector.job.ResponseStatus;
import org.eclipse.tractusx.irs.connector.job.TransferProcess;
import org.eclipse.tractusx.irs.common.persistence.BlobPersistence;
import org.eclipse.tractusx.irs.common.persistence.BlobPersistenceException;
import org.eclipse.tractusx.irs.semanticshub.AspectModel;
import org.eclipse.tractusx.irs.semanticshub.SemanticsHubFacade;
import org.eclipse.tractusx.irs.services.validation.SchemaNotFoundException;
Expand Down Expand Up @@ -112,8 +111,6 @@ public class IrsItemGraphQueryService implements IIrsItemGraphQueryService {

private final String bpdmUrl;

private final SecurityHelperService securityHelperService;

public IrsItemGraphQueryService(final JobOrchestrator<ItemDataRequest, AASTransferProcess> orchestrator,
final JobStore jobStore, @Qualifier(JOB_BLOB_PERSISTENCE) final BlobPersistence blobStore,
final MeterRegistryService meterRegistryService, final SemanticsHubFacade semanticsHubFacade,
Expand All @@ -126,7 +123,6 @@ public IrsItemGraphQueryService(final JobOrchestrator<ItemDataRequest, AASTransf
this.semanticsHubFacade = semanticsHubFacade;
this.applicationEventPublisher = applicationEventPublisher;
this.bpdmUrl = bpdmUrl;
this.securityHelperService = new SecurityHelperService();
}

@Override
Expand Down

0 comments on commit 809840a

Please sign in to comment.