KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > j2biz > blogunity > web > actions > blog > AtomFeedAction


1 /*
2  * $Id: AtomFeedAction.java,v 1.2 2005/01/15 10:40:35 michelson Exp $
3  *
4  * Copyright (c) 2005 j2biz Group, http://www.j2biz.com Koeln / Duesseldorf ,
5  * Germany
6  *
7  * @author Max Kalina
8  *
9  *
10  * This program is free software; you can redistribute it and/or modify it under
11  * the terms of the GNU General Public License as published by the Free Software
12  * Foundation; either version 2 of the License, or (at your option) any later
13  * version.
14  *
15  * This program is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License along with
21  * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
22  * Place, Suite 330, Boston, MA 02111-1307 USA
23  *
24  */

25
26 package com.j2biz.blogunity.web.actions.blog;
27
28 import com.j2biz.blogunity.pojo.Blog;
29
30
31 public class AtomFeedAction extends AbstractFeedAction {
32
33     /**
34      * @param blogname
35      * @param categoryId
36      */

37     public AtomFeedAction(Blog blog, String JavaDoc categoryId) {
38         super(blog, categoryId);
39     }
40
41     /*
42      * (non-Javadoc)
43      *
44      * @see com.j2biz.blogunity.web.actions.blog.AbstractFeedAction#getFeedtype()
45      */

46     public String JavaDoc getFeedtype() {
47         return "atom_0.3";
48     }
49
50 }
Popular Tags