OSDN Git Service

全てのjavaファイルにモードライン追加。
[rabbit-bts/RabbitBTS.git] / src / jp / sourceforge / rabbitBTS / dao / jdo / GenericDaoJdo.java
1 // vim:set ts=4 sts=4 sw=4 noet fenc=utf-8:
2 /*
3    Copyright 2009 senju@users.sourceforge.jp
4
5    Licensed under the Apache License, Version 2.0 (the "License");
6    you may not use this file except in compliance with the License.
7    You may obtain a copy of the License at
8
9        http://www.apache.org/licenses/LICENSE-2.0
10
11    Unless required by applicable law or agreed to in writing, software
12    distributed under the License is distributed on an "AS IS" BASIS,
13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14    See the License for the specific language governing permissions and
15    limitations under the License.
16  */
17
18 package jp.sourceforge.rabbitBTS.dao.jdo;
19
20 import java.io.Serializable;
21 import java.util.ArrayList;
22 import java.util.Collection;
23 import java.util.LinkedHashSet;
24 import java.util.List;
25
26 import jp.sourceforge.rabbitBTS.dao.GenericDao;
27
28 import org.springframework.orm.ObjectRetrievalFailureException;
29 import org.springframework.orm.jdo.support.JdoDaoSupport;
30
31 import com.google.appengine.api.datastore.Key;
32
33 public class GenericDaoJdo<T, PK extends Serializable> extends JdoDaoSupport
34                 implements GenericDao<T, PK> {
35         public final Class<T> persistentClass;
36
37         /**
38          * Constructor that takes in a class for easy creation of DAO
39          */
40         public GenericDaoJdo(Class<T> persistentClass) {
41                 this.persistentClass = persistentClass;
42         }
43
44         public boolean exists(PK id) {
45                 try {
46                         getJdoTemplate().getObjectById(this.persistentClass, id);
47                         return true;
48                 } catch (final ObjectRetrievalFailureException e) {
49                         return false;
50                 }
51         }
52
53         @SuppressWarnings("unchecked")
54         public T get(PK id) {
55                 final T entity = (T) getJdoTemplate().getObjectById(
56                                 this.persistentClass, id);
57                 return entity;
58         }
59
60         @SuppressWarnings("unchecked")
61         public T getByKey(Key id) {
62                 final T entity = (T) getJdoTemplate().getObjectById(
63                                 this.persistentClass, id);
64                 return entity;
65         }
66
67         public List<T> getAll() {
68                 return new ArrayList<T>(getJdoTemplate().find(this.persistentClass));
69         }
70
71         public List<T> getAllDistinct() {
72                 final Collection result = new LinkedHashSet(getAll());
73                 return new ArrayList(result);
74         }
75
76         public void remove(PK id) {
77                 getJdoTemplate().deletePersistent(this.get(id));
78         }
79
80         public T save(T object) {
81                 return (T) getJdoTemplate().makePersistent(object);
82         }
83
84 }