Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed .gradle/8.4/checksums/checksums.lock
Binary file not shown.
Binary file removed .gradle/8.4/checksums/md5-checksums.bin
Binary file not shown.
Binary file removed .gradle/8.4/checksums/sha1-checksums.bin
Binary file not shown.
Binary file not shown.
Empty file.
Binary file removed .gradle/8.4/executionHistory/executionHistory.bin
Binary file not shown.
Binary file removed .gradle/8.4/executionHistory/executionHistory.lock
Binary file not shown.
Binary file removed .gradle/8.4/fileChanges/last-build.bin
Binary file not shown.
Binary file removed .gradle/8.4/fileHashes/fileHashes.bin
Binary file not shown.
Binary file removed .gradle/8.4/fileHashes/fileHashes.lock
Binary file not shown.
Binary file removed .gradle/8.4/fileHashes/resourceHashesCache.bin
Binary file not shown.
Empty file removed .gradle/8.4/gc.properties
Empty file.
Binary file removed .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
2 changes: 0 additions & 2 deletions .gradle/buildOutputCleanup/cache.properties

This file was deleted.

Binary file removed .gradle/buildOutputCleanup/outputFiles.bin
Binary file not shown.
Binary file removed .gradle/file-system.probe
Binary file not shown.
Empty file removed .gradle/vcs-1/gc.properties
Empty file.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
import io.vertx.core.AbstractVerticle;
import io.vertx.core.http.HttpHeaders;
import io.vertx.core.http.HttpMethod;
import io.vertx.core.http.HttpServerOptions;
import io.vertx.core.net.JksOptions;
import io.vertx.ext.web.Router;
import io.vertx.ext.web.handler.CorsHandler;

Expand Down
4 changes: 2 additions & 2 deletions src/main/ql/InsecureCorsHttpOrigin.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
<example>
<p>Instead of an insecure HTTP connection to the origin, such as in the example below:</p>

<sample src="InsecureCorsHttpOrigin.java" />
<sample src="../java/org/carlspring/security/vertx/http/InsecureCorsHttpOrigin.java" />

<p>set up SSL like this:</p>

<sample src="SecureCorsServer.java" />
<sample src="../java/org/carlspring/security/vertx/http/SecureCorsServer.java" />
</example>

<references>
Expand Down
4 changes: 2 additions & 2 deletions src/main/ql/InsecureCorsWildcardOrigin.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
<example>
<p>Instead of adding a wildcard origin, such as in the example below:</p>

<sample src="InsecureCorsWildcardOrigin.java" />
<sample src="../java/org/carlspring/security/vertx/http/InsecureCorsWildcardOrigin.java" />

<p>define the origins explicitly like this:</p>

<sample src="SecureCorsServer.java" />
<sample src="../java/org/carlspring/security/vertx/http/SecureCorsServer.java" />
</example>

<references>
Expand Down
4 changes: 2 additions & 2 deletions src/main/ql/InsecureHttpServer.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<example>
<p>Instead of setting up a plain HTTP server that doesn't use SSL, such as this one:</p>

<sample src="InsecureHttpServer.java" />
<sample src="../java/org/carlspring/security/vertx/http/InsecureHttpServer.java" />

<p>
when creating an HTTP server, the <code>setSsl</code> method should be called on the
Expand All @@ -33,7 +33,7 @@
it with SSL:
</p>

<sample src="SecureHttpServer.java" />
<sample src="../java/org/carlspring/security/vertx/http/SecureHttpServer.java" />
</example>

<references>
Expand Down