Skip to content

Commit

Permalink
pr remakrs, remove endpoint generator
Browse files Browse the repository at this point in the history
  • Loading branch information
paullatzelsperger committed Mar 12, 2024
1 parent 541fa02 commit 1c5850f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

plugins {
`java-library`
`maven-publish`
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@
import com.nimbusds.jose.jwk.gen.ECKeyGenerator;
import com.nimbusds.jwt.JWTClaimsSet;
import com.nimbusds.jwt.SignedJWT;
import org.eclipse.edc.connector.dataplane.spi.Endpoint;
import org.eclipse.edc.connector.dataplane.spi.iam.DataPlaneAuthorizationService;
import org.eclipse.edc.connector.dataplane.spi.iam.PublicEndpointGeneratorService;
import org.eclipse.edc.iam.did.spi.resolution.DidPublicKeyResolver;
import org.eclipse.edc.junit.annotations.EndToEndTest;
import org.eclipse.edc.junit.extensions.EdcRuntimeExtension;
Expand Down Expand Up @@ -238,9 +236,6 @@ void refresh_invalidAuthenticationToken_missingAudience() {
}

private void prepareDataplaneRuntime() {
var generator = DATAPLANE_RUNTIME.getContext().getService(PublicEndpointGeneratorService.class);
generator.addGeneratorFunction("HttpData", dataAddress -> Endpoint.url(RUNTIME_CONFIG.getPublicApi().url().toString()));

var vault = DATAPLANE_RUNTIME.getContext().getService(Vault.class);
vault.storeSecret(PROVIDER_KEY_ID, providerKey.toJSONString());
}
Expand Down

0 comments on commit 1c5850f

Please sign in to comment.