SCION Microfrontend Platform - v1.4.0
    Preparing search index...

    Interface ManifestObjectFilter

    Allows filtering manifest objects like capabilities or intentions.

    All specified filter criteria are "AND"ed together. Unspecified filter criteria are ignored. If no filter criterion is specified, no filtering takes place, thus all available objects are returned.

    interface ManifestObjectFilter {
        appSymbolicName?: string;
        id?: string;
        qualifier?: Qualifier;
        type?: string;
    }
    Index

    Properties

    appSymbolicName?: string

    Manifest objects provided by the given app.

    id?: string

    Manifest objects of the given identity.

    qualifier?: Qualifier

    Manifest objects matching the given qualifier.

    type?: string

    Manifest objects of the given function type.