KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > riotfamily > pages > riot > dao > SiteRiotDao


1 /* ***** BEGIN LICENSE BLOCK *****
2  * Version: MPL 1.1
3  * The contents of this file are subject to the Mozilla Public License Version
4  * 1.1 (the "License"); you may not use this file except in compliance with
5  * the License. You may obtain a copy of the License at
6  * http://www.mozilla.org/MPL/
7  *
8  * Software distributed under the License is distributed on an "AS IS" basis,
9  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
10  * for the specific language governing rights and limitations under the
11  * License.
12  *
13  * The Original Code is Riot.
14  *
15  * The Initial Developer of the Original Code is
16  * Neteye GmbH.
17  * Portions created by the Initial Developer are Copyright (C) 2007
18  * the Initial Developer. All Rights Reserved.
19  *
20  * Contributor(s):
21  * Felix Gnass [fgnass at neteye dot de]
22  *
23  * ***** END LICENSE BLOCK ***** */

24 package org.riotfamily.pages.riot.dao;
25
26 import java.util.Collection JavaDoc;
27
28 import org.riotfamily.pages.Site;
29 import org.riotfamily.pages.dao.PageDao;
30 import org.riotfamily.riot.dao.ListParams;
31 import org.riotfamily.riot.dao.support.RiotDaoAdapter;
32 import org.springframework.beans.factory.InitializingBean;
33 import org.springframework.dao.DataAccessException;
34 import org.springframework.util.Assert;
35
36 /**
37  * @author Felix Gnass [fgnass at neteye dot de]
38  * @since 6.5
39  */

40 public class SiteRiotDao extends RiotDaoAdapter implements InitializingBean {
41
42     private PageDao pageDao;
43
44     public SiteRiotDao() {
45     }
46
47     public void setPageDao(PageDao pageDao) {
48         this.pageDao = pageDao;
49     }
50
51     public void afterPropertiesSet() throws Exception JavaDoc {
52         Assert.notNull(pageDao, "A PageDao must be set.");
53     }
54
55     public Class JavaDoc getEntityClass() {
56         return Site.class;
57     }
58
59     public Collection JavaDoc list(Object JavaDoc parent, ListParams params) throws DataAccessException {
60         return pageDao.listSites();
61     }
62
63     public void save(Object JavaDoc entity, Object JavaDoc parent) throws DataAccessException {
64         pageDao.saveSite((Site) entity);
65     }
66
67     public void update(Object JavaDoc entity) throws DataAccessException {
68         pageDao.updateSite((Site) entity);
69     }
70
71     public void delete(Object JavaDoc entity, Object JavaDoc parent) throws DataAccessException {
72         pageDao.deleteSite((Site) entity);
73     }
74
75     public String JavaDoc getObjectId(Object JavaDoc entity) {
76         return ((Site) entity).getId().toString();
77     }
78
79     public Object JavaDoc load(String JavaDoc id) throws DataAccessException {
80         return pageDao.loadSite(new Long JavaDoc(id));
81     }
82
83 }
84
Popular Tags