Package com.tapestry5book.pages.chapter06.blog.v3

Source Code of com.tapestry5book.pages.chapter06.blog.v3.Read

package com.tapestry5book.pages.chapter06.blog.v3;

import com.tapestry5book.entities.Article;
import com.tapestry5book.entities.Comment;
import org.apache.tapestry5.annotations.PageActivationContext;
import org.apache.tapestry5.annotations.Property;
import org.apache.tapestry5.hibernate.annotations.CommitAfter;

public class Read {

    @PageActivationContext
    @Property
    private Article article;

    @Property
    private Comment comment;

    @Property
    private Comment currentComment;

    void onPrepare() {
        comment = new Comment();
    }

    @CommitAfter
    void onSuccess() {
        article.getComments().add(comment);
    }
}
TOP

Related Classes of com.tapestry5book.pages.chapter06.blog.v3.Read

TOP
Copyright © 2018 www.massapi.com. 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.