<P>As well, some operations require the parent to be placed in request scope.
*/
private BaseText getParent() {
if( fParent == null){
BaseTextDAO dao = new BaseTextDAO();
//this req param needs to always be present
Id baseTextId = getIdParam(BASE_TEXT_ID);
fLogger.fine("Fetching BaseText for " + Util.quote(baseTextId));
try {
fParent = dao.fetch(baseTextId);
}
catch(DAOException ex){
fLogger.severe("Cannot fetch BaseText using id " + Util.quote(baseTextId));
}
}