*/
public ChannelIF createChannel(String title, URL location)
throws PersistenceManagerException {
// Create channel object and perform some initialization and save
final ChannelIF channel = new Channel(title);
channel.setLocation(location);
HibernateUtil.saveObject(channel);
return channel;
}