return requestLanguage;
}
public WGContent getContentByTitlePath(HttpServletRequest request) throws WGAPIException, UnsupportedEncodingException {
TitlePathManager tpm = (TitlePathManager) database.getAttribute(WGACore.DBATTRIB_TITLEPATHMANAGER);
TitlePath titlePathURL = getTitlePathURL();
WGContent pathContent = null;
try {
pathContent = tpm.findContentByTitlePath(titlePathURL, database, new RequestLanguageChooser(database, request), TitlePathManager.MODE_URL);
}
catch (RemainingPathElementException e) {
// Cannot happen with MODE_URL of title path manager
}