mirror of
https://github.com/lucko/LuckPerms.git
synced 2025-08-17 20:01:19 +02:00
Further javadoc improvements
This commit is contained in:
@@ -13,6 +13,7 @@ if (project.hasProperty('sonatypeUsername') && project.hasProperty('sonatypePass
|
|||||||
|
|
||||||
javadoc {
|
javadoc {
|
||||||
title = 'LuckPerms API (v' + project.ext.apiVersion + ')'
|
title = 'LuckPerms API (v' + project.ext.apiVersion + ')'
|
||||||
|
options.overview = 'javadoc/overview.html'
|
||||||
options.encoding = 'UTF-8'
|
options.encoding = 'UTF-8'
|
||||||
options.charSet = 'UTF-8'
|
options.charSet = 'UTF-8'
|
||||||
options.links(
|
options.links(
|
||||||
|
19
api/javadoc/overview.html
Normal file
19
api/javadoc/overview.html
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
<body>
|
||||||
|
<p>
|
||||||
|
LuckPerms is a permissions plugin for Minecraft servers. It allows server admins to control what
|
||||||
|
features players can use by creating groups and assigning permissions.
|
||||||
|
</p>
|
||||||
|
<h4>Useful Links</h4>
|
||||||
|
<ul>
|
||||||
|
<li><a target="_top" href="https://luckperms.net">Project Website</a></li>
|
||||||
|
<li><a target="_top" href="https://luckperms.net/wiki/Developer-API">Wiki - API Introduction</a></li>
|
||||||
|
<li><a target="_top" href="https://luckperms.net/wiki/Developer-API-Usage">Wiki - API Usage</a></li>
|
||||||
|
</ul>
|
||||||
|
<h4>Maven</h4>
|
||||||
|
<p>
|
||||||
|
The API artifact is deployed to Maven Central under
|
||||||
|
<a target="_top" href="https://search.maven.org/artifact/net.luckperms/api">
|
||||||
|
group id: <b><code>net.luckperms</code></b>, artifact id: <b><code>api</code></b>.
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</body>
|
@@ -27,41 +27,62 @@ package net.luckperms.api;
|
|||||||
|
|
||||||
import org.checkerframework.checker.nullness.qual.NonNull;
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
|
||||||
|
import static org.jetbrains.annotations.ApiStatus.Internal;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Provides static access to the {@link LuckPerms} service.
|
* Provides static access to the {@link LuckPerms} API.
|
||||||
*
|
*
|
||||||
* <p>Ideally, the ServiceManager for the platform should be used to obtain an
|
* <p>Ideally, the ServiceManager for the platform should be used to obtain an
|
||||||
* instance, however, this provider can be used if you need static access.</p>
|
* instance, however, this provider can be used if this is not viable.</p>
|
||||||
*/
|
*/
|
||||||
public final class LuckPermsProvider {
|
public final class LuckPermsProvider {
|
||||||
private static LuckPerms instance = null;
|
private static LuckPerms instance = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets an instance of the {@link LuckPerms} service,
|
* Gets an instance of the {@link LuckPerms} API,
|
||||||
* throwing {@link IllegalStateException} if an instance is not yet loaded.
|
* throwing {@link IllegalStateException} if the API is not loaded yet.
|
||||||
*
|
*
|
||||||
* <p>Will never return null.</p>
|
* <p>This method will never return null.</p>
|
||||||
*
|
*
|
||||||
* @return an api instance
|
* @return an instance of the LuckPerms API
|
||||||
* @throws IllegalStateException if the api is not loaded
|
* @throws IllegalStateException if the API is not loaded yet
|
||||||
*/
|
*/
|
||||||
public static @NonNull LuckPerms get() {
|
public static @NonNull LuckPerms get() {
|
||||||
if (instance == null) {
|
if (instance == null) {
|
||||||
throw new IllegalStateException("The LuckPerms API is not loaded.");
|
throw new NotLoadedException();
|
||||||
}
|
}
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Internal
|
||||||
static void register(LuckPerms instance) {
|
static void register(LuckPerms instance) {
|
||||||
LuckPermsProvider.instance = instance;
|
LuckPermsProvider.instance = instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Internal
|
||||||
static void unregister() {
|
static void unregister() {
|
||||||
LuckPermsProvider.instance = null;
|
LuckPermsProvider.instance = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Internal
|
||||||
private LuckPermsProvider() {
|
private LuckPermsProvider() {
|
||||||
throw new UnsupportedOperationException("This class cannot be instantiated.");
|
throw new UnsupportedOperationException("This class cannot be instantiated.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exception thrown when the API is requested before it has been loaded.
|
||||||
|
*/
|
||||||
|
private static final class NotLoadedException extends IllegalStateException {
|
||||||
|
private static final String MESSAGE = "The LuckPerms API isn't loaded yet!\n" +
|
||||||
|
"This could be because:\n" +
|
||||||
|
" a) the LuckPerms plugin is not installed or it failed to enable\n" +
|
||||||
|
" b) your plugin does not declare a dependency on LuckPerms\n" +
|
||||||
|
" c) you are attempting to use the API before plugins reach the 'enable' phase\n" +
|
||||||
|
" (call the #get method in onEnable, not in your plugin constructor!)\n";
|
||||||
|
|
||||||
|
NotLoadedException() {
|
||||||
|
super(MESSAGE);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -165,7 +165,7 @@ public interface ContextManager {
|
|||||||
* Invalidates the lookup cache for a given subject
|
* Invalidates the lookup cache for a given subject
|
||||||
*
|
*
|
||||||
* @param subject the subject
|
* @param subject the subject
|
||||||
* @deprecated use {@link #signalContextUpdate(Object)}
|
* @deprecated Use {@link #signalContextUpdate(Object)} instead
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
default void invalidateCache(@NonNull Object subject) {
|
default void invalidateCache(@NonNull Object subject) {
|
||||||
|
@@ -136,7 +136,7 @@ public interface ContextSet extends Iterable<Context> {
|
|||||||
* may not be a true representation of the set.</p>
|
* may not be a true representation of the set.</p>
|
||||||
*
|
*
|
||||||
* @return an immutable map
|
* @return an immutable map
|
||||||
* @deprecated because the resultant map may not contain all data in the ContextSet
|
* @deprecated Deprecated because the returned map may not contain all data in the ContextSet
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
@NonNull @Unmodifiable Map<String, String> toFlattenedMap();
|
@NonNull @Unmodifiable Map<String, String> toFlattenedMap();
|
||||||
|
@@ -67,7 +67,7 @@ public interface ImmutableContextSet extends ContextSet {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @deprecated Already immutable!
|
* @deprecated This context set is already immutable!
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
@Deprecated
|
@Deprecated
|
||||||
|
@@ -147,7 +147,7 @@ public interface GroupManager {
|
|||||||
* @param permission the permission to search for
|
* @param permission the permission to search for
|
||||||
* @return a list of held permissions, or null if the operation failed
|
* @return a list of held permissions, or null if the operation failed
|
||||||
* @throws NullPointerException if the permission is null
|
* @throws NullPointerException if the permission is null
|
||||||
* @deprecated use {@link #searchAll(NodeMatcher)}
|
* @deprecated Use {@link #searchAll(NodeMatcher)} instead
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
@NonNull CompletableFuture<@Unmodifiable List<HeldNode<String>>> getWithPermission(@NonNull String permission);
|
@NonNull CompletableFuture<@Unmodifiable List<HeldNode<String>>> getWithPermission(@NonNull String permission);
|
||||||
|
@@ -184,7 +184,7 @@ public interface UserManager {
|
|||||||
* @param permission the permission to search for
|
* @param permission the permission to search for
|
||||||
* @return a list of held permissions
|
* @return a list of held permissions
|
||||||
* @throws NullPointerException if the permission is null
|
* @throws NullPointerException if the permission is null
|
||||||
* @deprecated use {@link #searchAll(NodeMatcher)}
|
* @deprecated Use {@link #searchAll(NodeMatcher)} instead
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
@NonNull CompletableFuture<@Unmodifiable List<HeldNode<UUID>>> getWithPermission(@NonNull String permission);
|
@NonNull CompletableFuture<@Unmodifiable List<HeldNode<UUID>>> getWithPermission(@NonNull String permission);
|
||||||
|
@@ -33,6 +33,7 @@ import org.checkerframework.checker.nullness.qual.NonNull;
|
|||||||
* A relationship between a {@link PermissionHolder} and a {@link Node}.
|
* A relationship between a {@link PermissionHolder} and a {@link Node}.
|
||||||
*
|
*
|
||||||
* @param <T> the identifier type of the holder
|
* @param <T> the identifier type of the holder
|
||||||
|
* @deprecated The only usages of this interface are also deprecated.
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public interface HeldNode<T> {
|
public interface HeldNode<T> {
|
||||||
|
Reference in New Issue
Block a user