| java.lang.Object org.enhydra.util.Utils
Utils | public class Utils (Code) | | Utility methods.
|
Method Summary | |
public static List | getCachedDOClassesForApplication(Config cfg, ClassLoader cl) Returns a List of DODS classes that represents the Database tables which are
used by application given by it's name, and are cached. | public static List | getCachedDOClassesFromClassList(File classListFile, ClassLoader cl, String databaseName) Find class names in specified ClassList file and add this classes in cache. | public static List | getCachedDOClassesFromClassListAsResource(InputStream classListInputStream, ClassLoader cl, String databaseName) Find class names in specified ClassList file and add this classes in cache. | public static List | getCachedDOClassesFromDoml(InputStream doml, ClassLoader cl, String databaseName) Find class names in specified doml file and add this classes in cache. | public static List | getCachedDOClassesFromDoml(String domlPath, ClassLoader cl, String databaseName) Find class names in specified doml file and add this classes in cache. |
getCachedDOClassesForApplication | public static List getCachedDOClassesForApplication(Config cfg, ClassLoader cl)(Code) | | Returns a List of DODS classes that represents the Database tables which are
used by application given by it's name, and are cached.
|
getCachedDOClassesFromClassList | public static List getCachedDOClassesFromClassList(File classListFile, ClassLoader cl, String databaseName)(Code) | | Find class names in specified ClassList file and add this classes in cache.
Parameters: classListPath - path to ClassList file Parameters: cl - class loader list with loaded classes |
getCachedDOClassesFromClassListAsResource | public static List getCachedDOClassesFromClassListAsResource(InputStream classListInputStream, ClassLoader cl, String databaseName)(Code) | | Find class names in specified ClassList file and add this classes in cache.
Parameters: classListPath - path to ClassList file Parameters: cl - class loader list with loaded classes |
getCachedDOClassesFromDoml | public static List getCachedDOClassesFromDoml(InputStream doml, ClassLoader cl, String databaseName)(Code) | | Find class names in specified doml file and add this classes in cache.
Parameters: domlPath - path to doml file Parameters: cl - class loader list with loaded classes |
getCachedDOClassesFromDoml | public static List getCachedDOClassesFromDoml(String domlPath, ClassLoader cl, String databaseName)(Code) | | Find class names in specified doml file and add this classes in cache.
Parameters: domlPath - path to doml file Parameters: cl - class loader list with loaded classes |
|
|