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
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
/**
* <p>Classes implementing the various endpoints of the Vault HTTP API.</p>
* <p>Intended for internal use by other classes within the Vault driver library.</p>
*
* <p>The classes in this package are not meant to be instantiated directly. Rather, they should
* be used by way of the <code>io.github.jopenlibs.vault.Vault</code> driver class, in a DSL-style
* builder pattern approach.</p>
* <p>Classes in this package implements the /sys/ API endpoints. There are not meant to be
* instantiated directly. Rather, they should be used by way of the
* <code>io.github.jopenlibs.vault.Vault</code> driver class, in a DSL-style builder pattern
* approach.</p>
*/
package io.github.jopenlibs.vault.api.sys;
3 changes: 3 additions & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
requires java.logging;
exports io.github.jopenlibs.vault;
exports io.github.jopenlibs.vault.api;
exports io.github.jopenlibs.vault.api.database;
exports io.github.jopenlibs.vault.api.pki;
exports io.github.jopenlibs.vault.api.sys;
exports io.github.jopenlibs.vault.api.sys.mounts;
exports io.github.jopenlibs.vault.json;
exports io.github.jopenlibs.vault.response;
exports io.github.jopenlibs.vault.rest;
Expand Down