-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0c3d785
commit 53f80a7
Showing
3 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
...active/quarkus-resteasy-reactive/deployment/src/main/resources/dev-templates/filters.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{#include main} | ||
{#title} Filter Information {/title} | ||
{#style} | ||
{/style} | ||
{#body} | ||
{#for requestFilterGlobalResource in info:filterInfo.getContainerRequestFilters.getGlobalResourceInterceptors} | ||
<div class="row"> | ||
<div class="col"> | ||
<code>{requestFilterGlobalResource.getClassName}</code> | ||
</div> | ||
</div> | ||
{/for} | ||
|
||
{#for requestFilterNameResource in info:filterInfo.getContainerRequestFilters.getNameResourceInterceptors} | ||
<div class="row"> | ||
<div class="col"> | ||
<code>{requestFilterNameResource.getClassName}</code> | ||
</div> | ||
</div> | ||
{/for} | ||
|
||
{#for requestFilterPreMatch in info:filterInfo.getContainerRequestFilters.getPreMatchInterceptors} | ||
<div class="row"> | ||
<div class="col"> | ||
<code>{requestFilterPreMatch.getClassName}</code> | ||
</div> | ||
</div> | ||
{/for} | ||
|
||
{#for responseFilterNameResource in info:filterInfo.getContainerResponseFilters.getNameResourceInterceptors} | ||
<div class="row"> | ||
<div class="col"> | ||
<code>{responseFilterNameResource.getClassName}</code> | ||
</div> | ||
</div> | ||
{/for} | ||
|
||
{#for responseFilterGlobalResource in info:filterInfo.getContainerResponseFilters.getGlobalResourceInterceptors()} | ||
<div class="row"> | ||
<div class="col"> | ||
<code>{responseFilterGlobalResource.getClassName}</code> | ||
</div> | ||
</div> | ||
{/for} | ||
{/body} | ||
{/include} |