Package com.ibm.wsspi.jsp.taglib.config
Class GlobalTagLibConfig
- java.lang.Object
- 
- com.ibm.wsspi.jsp.taglib.config.GlobalTagLibConfig
 
- 
 public class GlobalTagLibConfig extends java.lang.ObjectThis class is used to handle the enabling of a tag library that is available for all applications on a server.
- 
- 
Constructor SummaryConstructors Constructor Description GlobalTagLibConfig()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ClassLoadergetClassloader()Gets the classloader for this global tag libraryjava.lang.StringgetJarName()Returns a String containing the name of the jarjava.net.URLgetJarURL()Gets the jar url for this global tag libraryjava.util.ListgetTldPathList()Returns a List of all the tlds to be parsed within this jarvoidsetClassloader(java.lang.ClassLoader classloader)Sets the classloader for this global tag libraryvoidsetJarName(java.lang.String string)Sets the jar name for this global tag libraryvoidsetJarURL(java.net.URL jarURL)Sets the jar url for this global tag library
 
- 
- 
- 
Method Detail- 
getJarNamepublic java.lang.String getJarName() Returns a String containing the name of the jar- Returns:
- String - the name of the jar
 
 - 
getTldPathListpublic java.util.List getTldPathList() Returns a List of all the tlds to be parsed within this jar- Returns:
- List - the tld files within the jar
 
 - 
setJarNamepublic void setJarName(java.lang.String string) Sets the jar name for this global tag library- Parameters:
- string- String - the name of the jar for this global tag library
 
 - 
setJarURLpublic void setJarURL(java.net.URL jarURL) Sets the jar url for this global tag library- Parameters:
- jarURL- String - the url of the jar for this global tag library
 
 - 
getJarURLpublic java.net.URL getJarURL() Gets the jar url for this global tag library- Returns:
- URL - the url for this global tag library
 
 - 
getClassloaderpublic java.lang.ClassLoader getClassloader() Gets the classloader for this global tag library- Returns:
- ClassLoader - the classloader for this global tag library
 
 - 
setClassloaderpublic void setClassloader(java.lang.ClassLoader classloader) Sets the classloader for this global tag library- Parameters:
- classloader- ClassLoader - the classloader to be used for this global tag library
 
 
- 
 
-