Package de.nava.informa.impl.hibernate

Examples of de.nava.informa.impl.hibernate.ChannelGroup


*/
public class SpringPersistenceManager extends HibernateDaoSupport implements PersistenceManagerIF {


  public ChannelGroupIF createGroup(String title) throws PersistenceManagerException {
    ChannelGroupIF group = new ChannelGroup(title);
    getHibernateTemplate().save(group);
    return group;
  }
View Full Code Here


   */
  public ChannelGroupIF createGroup(String title)
    throws PersistenceManagerException {

    // Create group object
    final ChannelGroupIF group = new ChannelGroup(title);
    HibernateUtil.saveObject(group);

    return group;
  }
View Full Code Here

TOP

Related Classes of de.nava.informa.impl.hibernate.ChannelGroup

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.