protected CPPage getFirstPageToDisplay() {
CPItem it = cpcore.getFirstPageToDisplay();
if (it == null) {
// in case the manifest has no item at all -> use organisation identifyer
// instead
return new CPPage(cpcore.getFirstOrganizationInManifest().getIdentifier(), this);
} else {
// display the found item
return new CPPage(it.getIdentifier(), this);
}
}