Topics topics = getTopics();
Topic topic = new Topic(this.getDomainModel());
topic.setName("SE");
topic.setDescription("Software Engineering");
if (topics.add(topic)) {
topic.output("Software Engineering");
}
} catch (ActionException ae) {
log.info("Add topic problem: " + ae.getMessage());
}
}