File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
fj-doc-playground-quarkus/src/main/java/org/fugerit/java/doc/playground/catalog Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 36
36
snyk-dockertag : fj-doc-playground-quarkus
37
37
maven-additional-profiles : ' ,buildreact'
38
38
disable-maven-dependency-submission : ${{ vars.DISABLE_MAVEN_DEPENDENCY_SUBMISSION }}
39
+ disable-upload-sarif : ${{ vars.DISABLE_UPLOAD_SARIF }}
39
40
maven-core : ' 2'
Original file line number Diff line number Diff line change 3
3
import java .io .Reader ;
4
4
import java .util .stream .Collectors ;
5
5
6
+ import jakarta .ws .rs .core .NewCookie ;
6
7
import org .fugerit .java .core .io .StreamIO ;
7
8
import org .fugerit .java .core .lang .helpers .StringUtils ;
8
9
import org .fugerit .java .core .util .collection .OptionItem ;
@@ -26,6 +27,7 @@ public class CatalogRest {
26
27
@ Produces (MediaType .APPLICATION_JSON )
27
28
@ Path ("/list/type/{type}" )
28
29
public Response catalogListFilterType ( @ PathParam ("type" ) String type ) {
30
+
29
31
return RestHelper .defaultHandle ( () -> Response .ok ().entity (
30
32
DocCatalogSample .getInstance ().getPlaygroundCoreCatalog ()
31
33
.stream ().filter ( e -> type .equalsIgnoreCase ( e .getType () ) ).map (
You can’t perform that action at this time.
0 commit comments