* @param XMLPath XML path
* @param XSLPath XSL path
* @return XSLTranformationDoc
*/
public static XSLTranformationDoc getXSLTranformationDocByXMLPath(String XMLPath,String XSLPath) {
DotCacheAdministrator cache = CacheLocator.getCacheAdministrator();
XSLTranformationDoc doc = null;
try{
doc = (XSLTranformationDoc) cache.get(getPrimaryGroup() + XMLPath+"_"+XSLPath, getPrimaryGroup());
}catch (DotCacheException e) {
Logger.debug(XSLTransformationCache.class,"Cache Entry not found", e);
}
if (doc != null) {