Skip to content

Commit

Permalink
feat: adds documentation for edc.jsonld.document.* setting (#4247)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolf4ood committed Jun 7, 2024
1 parent 031d4b1 commit a3d725f
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ public class JsonLdExtension implements ServiceExtension {

public static final String NAME = "JSON-LD Extension";
public static final String EDC_JSONLD_DOCUMENT_PREFIX = "edc.jsonld.document";
public static final String EDC_JSONLD_DOCUMENT_CONFIG_ALIAS = EDC_JSONLD_DOCUMENT_PREFIX + ".<documentAlias>.";

@Setting(context = EDC_JSONLD_DOCUMENT_CONFIG_ALIAS, value = "Path of the JSON-LD document to cache", required = true)
public static final String CONFIG_VALUE_PATH = "path";
@Setting(context = EDC_JSONLD_DOCUMENT_CONFIG_ALIAS, value = "URL of the JSON-LD document to cache", required = true)
public static final String CONFIG_VALUE_URL = "url";

private static final boolean DEFAULT_HTTP_HTTPS_RESOLUTION = false;
Expand Down

0 comments on commit a3d725f

Please sign in to comment.