Interface SpringPluginInfo
-
- All Known Implementing Classes:
AgentPluginInfoImpl
,ServerSpringPluginInfoImpl
public interface SpringPluginInfo
- Author:
- Eugene Petrenko (eugene.petrenko@gmail.com) Date: 25.01.11 17:25
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<String>
getConfigWildcards()
All resources matching the given wildcards will be copied to temp folder in order to setup contextCollection<String>
getExplicitSpringConfigs()
Those parameters will be put to Spring context as-isCollection<File>
getPluginJarFiles()
String
getPluginName()
-
-
-
Method Detail
-
getPluginJarFiles
@NotNull Collection<File> getPluginJarFiles()
-
getConfigWildcards
@NotNull Collection<String> getConfigWildcards()
All resources matching the given wildcards will be copied to temp folder in order to setup context- Returns:
- list of Ant wildcards
-
getExplicitSpringConfigs
@NotNull Collection<String> getExplicitSpringConfigs()
Those parameters will be put to Spring context as-is- Returns:
- Spring context config files wildcard
-
getPluginName
@NotNull String getPluginName()
-
-