copyright The Portico Project 2008.

Uses of Class
org.portico.shared.plugin.LoadedLibrary

Packages that use LoadedLibrary
org.portico.core.config   
org.portico.lrc   
org.portico.shared.plugin   
 

Uses of LoadedLibrary in org.portico.core.config
 

Methods in org.portico.core.config that return types with arguments of type LoadedLibrary
 Set<LoadedLibrary> PluginLoader.getLoadedPlugins()
          Returns a set of all the jar files from which RTI plugins have been loaded.
 

Uses of LoadedLibrary in org.portico.lrc
 

Methods in org.portico.lrc that return types with arguments of type LoadedLibrary
 Set<LoadedLibrary> LRCPluginLoader.getLoadedPlugins()
          Returns a set of all the jar files from which LRC plugins have been loaded.
 

Uses of LoadedLibrary in org.portico.shared.plugin
 

Fields in org.portico.shared.plugin with type parameters of type LoadedLibrary
private  Map<String,LoadedLibrary> PluginLocator.loaded
           
private  Set<LoadedLibrary> PluginLocator.lrcPlugins
           
private  Set<LoadedLibrary> PluginLocator.rtiPlugins
           
 

Methods in org.portico.shared.plugin that return types with arguments of type LoadedLibrary
 Collection<LoadedLibrary> PluginLocator.getAllLoadedLibraries()
          Get the collection of all libraries that have been found and appended to the system classpath (whether they are plugins or not).
 Set<LoadedLibrary> PluginLocator.getLrcPlugins()
          Get the set of all loaded libraries that contain LRC plugin configuration data.
 Set<LoadedLibrary> PluginLocator.getRtiPlugins()
          Get the set of all loaded libraries that contain RTI plugin configuration data.
 List<LoadedLibrary> PluginLocator.process(org.apache.log4j.Logger logger)
          This method will scan the default plug-in directory (as identified by the value in the PorticoConstants.DEFAULT_PLUGIN_DIR variable).
 List<LoadedLibrary> PluginLocator.process(String pluginDir, org.apache.log4j.Logger logger)
          This method is the same as PluginLocator.process(Logger) except that you can specify the directory that you wish to scan.
private  List<LoadedLibrary> PluginLocator.scan(String location, org.apache.log4j.Logger logger)
          This method will scan the given directory for all jar files and will return a list of LoadedLibrary instances containing the information about any that were found, as long as they were not previously loaded (previously loaded files will be ignored).
 

Methods in org.portico.shared.plugin with parameters of type LoadedLibrary
private  void PluginLocator.scanForPluginData(LoadedLibrary library, org.apache.log4j.Logger logger)
          This method will scan the given library for any RTI or LRC plugin configuration data.
private  Set<URL> PluginLocator.scanForPluginData(LoadedLibrary library, String resourceLocation, String manifestAttribute, org.apache.log4j.Logger logger)
          This method performs the actual scanning.
 


copyright The Portico Project 2008.