/** * PermissionsEx * Copyright (C) zml and PermissionsEx contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package ninja.leaping.permissionsex; import ninja.leaping.permissionsex.util.command.CommandSpec; import org.slf4j.Logger; import javax.sql.DataSource; import java.nio.file.Path; import java.sql.SQLException; import java.util.Set; import java.util.concurrent.Executor; /** * Methods that are specific to a certain implementation of PermissionsEx (Sponge, Forge, etc) */ public interface ImplementationInterface { /** * Return the base directory to store any additional configuration files in. * * @return The base directory */ Path getBaseDirectory(); /** * Gets the appropriate logger * @return */ Logger getLogger(); /** * Returns an appropriate data source for the implementation-dependent specificer {@code url}. * * @param url The specifier to get a data source for * @return The appropriate data source, or null if not supported */ DataSource getDataSourceForURL(String url) throws SQLException; /** * Get an executor to run tasks asynchronously on. * * @return The async executor */ Executor getAsyncExecutor(); /** * Register the given command to be executed on the implementation's interface * * @param command The command to execute */ void registerCommand(CommandSpec command); /** * Get commands that the implementation wants to register as a child of the {@code /pex} command * * @return The desired subcommands, or an empty set */ Set<CommandSpec> getImplementationCommands(); /** * Return the version number attached to this implementation of PEX * * @return The currently running version */ String getVersion(); }