mirror of
https://codeberg.org/PGPainless/cert-d-java.git
synced 2024-11-14 12:02:06 +01:00
Add documentation to BaseDirectoryProvider
This commit is contained in:
parent
f382189638
commit
a956aec5fc
1 changed files with 10 additions and 0 deletions
|
@ -6,6 +6,16 @@ package pgp.cert_d;
|
|||
|
||||
import java.io.File;
|
||||
|
||||
/**
|
||||
* Provider class that is responsible for resolving the pgp.cert.d base directory of the system.
|
||||
* The result can be overwritten by setting the <pre>PGP_CERT_D</pre> environment variable.
|
||||
* If this variable is not set, the system-specific default directory will be returned.
|
||||
*
|
||||
* On Windows systems, this is <pre>%APPDATA%\pgp.cert.d</pre>.
|
||||
* On Linux systems it is either <pre>$XDG_DATA_HOME/pgp.cert.d</pre> or, if <pre>$XDG_DATA_HOME</pre> is not set,
|
||||
* it is <pre>$HOME/.local/share/pgp.cert.d</pre>
|
||||
* On Mac systems it is <pre>$HOME/Library/Application Support/pgp.cert.d</pre>.
|
||||
*/
|
||||
public class BaseDirectoryProvider {
|
||||
|
||||
public static File getDefaultBaseDir() {
|
||||
|
|
Loading…
Reference in a new issue