}
}
public Entry getEntry() {
try {
BlogPersistenceService bps = (BlogPersistenceService) new InitialContext().lookup(
"osgi:service/" + BlogPersistenceService.class.getName());
return bps.getBlogEntryById(entryId);
} catch (NamingException e) {
throw new RuntimeException(e);
}
}