Package com.tapestry5book.tlog.blogroll.entities

Examples of com.tapestry5book.tlog.blogroll.entities.ExternalBlog


        this.sessionManager.getSession().save(blog);
        this.sessionManager.commit();
    }

    private ExternalBlog newExternalBlog(String name, String uri) {
        ExternalBlog blog = new ExternalBlog();
        blog.setName(name);
        blog.setUri(uri);

        return blog;
    }
View Full Code Here


    public void test() {
        HibernateSessionManager sessionManager = tester.getService(HibernateSessionManager.class);

        Session session = sessionManager.getSession();

        ExternalBlog blog = new ExternalBlog();
        blog.setName("http://tapestry5.de");
        blog.setUri("http://tapestry5.de");

        session.save(blog);

        sessionManager.commit();
View Full Code Here

TOP

Related Classes of com.tapestry5book.tlog.blogroll.entities.ExternalBlog

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.