Skip to content

Commit 971a24e

Browse files
authored
Added missing module-info and package-info informations (#37)
1 parent 86de5e7 commit 971a24e

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed
Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
/**
2-
* <p>Classes implementing the various endpoints of the Vault HTTP API.</p>
2+
* <p>Intended for internal use by other classes within the Vault driver library.</p>
33
*
4-
* <p>The classes in this package are not meant to be instantiated directly. Rather, they should
5-
* be used by way of the <code>io.github.jopenlibs.vault.Vault</code> driver class, in a DSL-style
6-
* builder pattern approach.</p>
4+
* <p>Classes in this package implements the /sys/ API endpoints. There are not meant to be
5+
* instantiated directly. Rather, they should be used by way of the
6+
* <code>io.github.jopenlibs.vault.Vault</code> driver class, in a DSL-style builder pattern
7+
* approach.</p>
78
*/
89
package io.github.jopenlibs.vault.api.sys;

src/main/java/module-info.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
requires java.logging;
33
exports io.github.jopenlibs.vault;
44
exports io.github.jopenlibs.vault.api;
5+
exports io.github.jopenlibs.vault.api.database;
6+
exports io.github.jopenlibs.vault.api.pki;
57
exports io.github.jopenlibs.vault.api.sys;
8+
exports io.github.jopenlibs.vault.api.sys.mounts;
69
exports io.github.jopenlibs.vault.json;
710
exports io.github.jopenlibs.vault.response;
811
exports io.github.jopenlibs.vault.rest;

0 commit comments

Comments
 (0)