if (category == null) {
// this is a new category
category = new Category();
category.setId(id);
category.setName(name);
blog.addCategory(category);
category.setTags(tags);
try {
// add it to the persistent store
DAOFactory factory = DAOFactory.getConfiguredFactory();
CategoryDAO dao = factory.getCategoryDAO();