Interface BasePodCreatorArgs

interface BasePodCreatorArgs {
    baseUrl: string;
    identifierGenerator: IdentifierGenerator;
    podStore: PodStore;
    relativeWebIdPath: string;
    webIdStore: WebIdStore;
}

Properties

baseUrl: string

Base URL of the server. Used to potentially set the solid:oidcIssuer triple and/or the pod URL if it is a root pod.

identifierGenerator: IdentifierGenerator

Generates the base URL of the pod based on the input name.

podStore: PodStore

Pod data store.

relativeWebIdPath: string

The path of where the WebID will be generated by the template, relative to the pod URL.

webIdStore: WebIdStore

WebID data store.