io.github.amyassist.amy.core.Configuration Maven / Gradle / Ivy
/*
* This source file is part of the Amy open source project.
* For more information see github.com/AmyAssist
*
* Copyright (c) 2018 the Amy project authors.
*
* SPDX-License-Identifier: Apache-2.0
*
* 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.
*
* For more information see notice.md
*/
package io.github.amyassist.amy.core;
/**
* Configuration of the application
*
* @author Leon Kiefer
*/
public interface Configuration {
/**
* Get all plugin names
*
* @return array of all names
*/
String[] getInstalledPlugins();
/**
* Get the version of a installed plugin
*
* @param pluginName
* the name of the plugin
* @return the version of the plugin
*/
String getPluginVersion(String pluginName);
/**
* Get the description of a installed plugin
*
* @param pluginName
* the name of the plugin
* @return the description of the plugin
*/
String getPluginDescription(String pluginName);
}