Package com.ibm.wsspi.jsp.taglib.config
Class TldPathConfig
- java.lang.Object
-
- com.ibm.wsspi.jsp.taglib.config.TldPathConfig
-
public class TldPathConfig extends java.lang.Object
This class is used in conjunction with a GlobalTagLibConfig and is used to provide specific path information for a tld file.
-
-
Constructor Summary
Constructors Constructor Description TldPathConfig(java.lang.String tldPath, java.lang.String uri, java.lang.String strContainsListenerDefs)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
containsListenerDefs()
Gets whether the tld contains any listener elements return boolean - if the tld file contains any listener elementsjava.util.List
getAvailabilityConditionList()
Gets the conditions as to when this tld is made available.java.lang.String
getTldPath()
Gets the relative path within the jar to the tld filejava.lang.String
getUri()
Gets the uri of the tldvoid
setUri(java.lang.String string)
Sets the uri for the tld param string String - the uri for the tld
-
-
-
Method Detail
-
getAvailabilityConditionList
public java.util.List getAvailabilityConditionList()
Gets the conditions as to when this tld is made available. The condition can be the existence of a file within the web-inf directory or the existence of a servlet class.- Returns:
- List - a list of availability conditions
-
getTldPath
public java.lang.String getTldPath()
Gets the relative path within the jar to the tld file- Returns:
- String - the relative path within the jar
-
getUri
public java.lang.String getUri()
Gets the uri of the tld- Returns:
- String - the uri of the tld
-
setUri
public void setUri(java.lang.String string)
Sets the uri for the tld param string String - the uri for the tld
-
containsListenerDefs
public boolean containsListenerDefs()
Gets whether the tld contains any listener elements return boolean - if the tld file contains any listener elements
-
-