Package com.ibm.di.loader
Class TDIJarsLocator
- java.lang.Object
-
- com.ibm.di.loader.TDIJarsLocator
-
public class TDIJarsLocator extends java.lang.Object
This class is responsible for locating TDI Jars URLs. Jars are grouped in four categories:1. Third Party Jars
2. Components Jars
3. Patch Jars
4. Custom Jars- Since:
- 7.1
-
-
Constructor Summary
Constructors Constructor Description TDIJarsLocator(java.io.File tdiInstallDir)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.net.URL[]
getComponentsJars()
Get the URLs of all component Jars.java.net.URL[]
getCustomJars()
Get the URLs to all custom Jarsjava.net.URL[]
getPatchesJars()
Get the URLs to all patched Jarsjava.net.URL[]
getThirdPartyJars()
Get the URLs to all third party Jars.
-
-
-
Method Detail
-
getThirdPartyJars
public java.net.URL[] getThirdPartyJars()
Get the URLs to all third party Jars.- Returns:
- Array of URLs to all third party Jars
-
getComponentsJars
public java.net.URL[] getComponentsJars()
Get the URLs of all component Jars.- Returns:
- Array of URLs to all component Jars
-
getPatchesJars
public java.net.URL[] getPatchesJars()
Get the URLs to all patched Jars- Returns:
- Array of URLs to all patched JarsF
-
getCustomJars
public java.net.URL[] getCustomJars()
Get the URLs to all custom Jars- Returns:
- Array of URLs to all custom Jars
-
-