Skip to content

Commit

Permalink
chore: remove readme trusted issuer ext (#3622)
Browse files Browse the repository at this point in the history
* chore: removes README for the Trusted Issuer Configuration extension

* chore: dependencies file

* pr remarks
  • Loading branch information
wolf4ood authored Nov 20, 2023
1 parent fa978df commit f897641
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 13 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import org.eclipse.edc.identitytrust.model.Issuer;
import org.eclipse.edc.runtime.metamodel.annotation.Extension;
import org.eclipse.edc.runtime.metamodel.annotation.Inject;
import org.eclipse.edc.runtime.metamodel.annotation.Setting;
import org.eclipse.edc.spi.EdcException;
import org.eclipse.edc.spi.system.ServiceExtension;
import org.eclipse.edc.spi.system.ServiceExtensionContext;
Expand All @@ -29,12 +30,20 @@

import static org.eclipse.edc.identitytrust.issuer.configuration.TrustedIssuerConfigurationExtension.NAME;

/**
* This IATP extension makes it possible to configure a list of trusted issuers, that will be matched against the Verifiable Credential issuers.
*/
@Extension(NAME)
public class TrustedIssuerConfigurationExtension implements ServiceExtension {

public static final String CONFIG_PREFIX = "edc.iam.trusted-issuer";
public static final String CONFIG_ALIAS = CONFIG_PREFIX + ".<issuerAlias>.";

@Setting(context = CONFIG_ALIAS, value = "Additional properties of the issuer.")
public static final String PROPERTIES_SUFFIX = "properties";
@Setting(context = CONFIG_ALIAS, value = "ID of the issuer.", required = true)
public static final String ID_SUFFIX = "id";

protected static final String NAME = "Trusted Issuers Configuration Extensions";

@Inject
Expand Down

0 comments on commit f897641

Please sign in to comment.