* @return the StlyesheetSet object
* @throws PortalException
*/
public static StylesheetSet getStylesheetSet (String stylesheetListURI) throws PortalException {
// First, check the cache...
StylesheetSet stylesheetSet = (StylesheetSet)stylesheetSetCache.get(stylesheetListURI);
if (stylesheetSet == null) {
// Get the StylesheetSet and cache it
stylesheetSet = new StylesheetSet(stylesheetListURI);
if (stylesheetSetCacheEnabled) {
stylesheetSetCache.put(stylesheetListURI, stylesheetSet);
if (log.isInfoEnabled())
log.info( "Caching StylesheetSet for: " + stylesheetListURI);
}