Package org.ametys.runtime.config
Class ConfigParameterInfo
- java.lang.Object
-
- org.ametys.runtime.config.ConfigParameterInfo
-
public class ConfigParameterInfo extends Object
Information on a configuration parameter.
-
-
Constructor Summary
Constructors Constructor Description ConfigParameterInfo(String id, String pluginName, Configuration conf)
Create a configuration parameter info.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Configuration
getConfiguration()
Get the declaring configuration.String
getId()
Get the parameter ID.String
getPluginName()
Get the declaring plugin name.
-
-
-
Constructor Detail
-
ConfigParameterInfo
public ConfigParameterInfo(String id, String pluginName, Configuration conf)
Create a configuration parameter info.- Parameters:
id
- the parameter id.pluginName
- the declaring plugin name.conf
- the configuration.
-
-
Method Detail
-
getPluginName
public String getPluginName()
Get the declaring plugin name.- Returns:
- the declaring plugin name.
-
getConfiguration
public Configuration getConfiguration()
Get the declaring configuration.- Returns:
- the declaring configuration.
-
-