Package actions

Source Code of actions.BlogEntryService

package actions;

import org.jboss.seam.ScopeType;
import org.jboss.seam.annotations.Factory;
import org.jboss.seam.annotations.In;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;

import domain.Blog;
import domain.BlogEntry;

@Name("blogEntryService")
@Scope(ScopeType.STATELESS)
public class BlogEntryService
{
  
   @In Blog blog;
  
   @Factory("blogEntry")
   public BlogEntry createBlogEntry()
   {
      return new BlogEntry(blog);
   }

}
TOP

Related Classes of actions.BlogEntryService

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.