JWS Loaders
The following table lists all JWS Loaders declared as services in your application configuration
or using the Configuration Helper.
Loaders directly created through the JWS Loader Factory cannot be listed.
Service ID |
Serializers |
Algorithms |
{% if collector.getData().jws.jws_loaders is empty %}
No loader |
{% else %}
{% for id, data in collector.getData().jws.jws_loaders %}
{{ id }} |
{% for serializer in data.serializers %}
- {{ serializer }}
{% endfor %}
|
{% for algorithm in data.signature_algorithms %}
-
{{ algorithm }}
{% endfor %}
|
{% endfor %}
{% endif %}