*/
public ChannelGroup reload(ChannelGroup group) throws ChannelBuilderException {
try {
getSession().load(group, new Long(group.getId()));
} catch (HibernateException e) {
throw new ChannelBuilderException("Unable to reload group: "
+ e.getMessage());
}
return group;
}