View Javadoc

1   /**
2    * Copyright 2011 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
14   */
15  
16  package org.kuali.mobility.push.dao;
17  
18  import java.util.List;
19  
20  import javax.persistence.EntityManager;
21  import javax.persistence.PersistenceContext;
22  import javax.persistence.Query;
23  
24  import org.apache.log4j.Logger;
25  import org.kuali.mobility.push.entity.Push;
26  import org.kuali.mobility.push.entity.PushDeviceTuple;
27  import org.springframework.stereotype.Repository;
28  import org.springframework.transaction.annotation.Transactional;
29  
30  /**
31   * @author Kuali Mobility Team (mobility.collab@kuali.org)
32   * @since 2.1.0
33   */
34  @Repository
35  public class PushDeviceTupleDaoImpl implements PushDeviceTupleDao {
36  
37  	/** A reference to a logger */
38  	private static final Logger LOG = Logger.getLogger(DeviceDaoImpl.class);
39  
40  	/**
41  	 * A reference to the <code>EntityManager</code>
42  	 */
43  	@PersistenceContext
44  	private EntityManager entityManager;
45  
46  	/**
47  	 * Creates a new instance of a <code>PushDeviceTupleDaoImpl</code>
48  	 */
49  	public PushDeviceTupleDaoImpl(){
50  	}
51  
52  	/*
53  	 * (non-Javadoc)
54  	 * @see org.kuali.mobility.push.dao.PushDeviceTupleDao#markTupleAsSent(org.kuali.mobility.push.entity.PushDeviceTuple)
55  	 */
56  	public void markTupleAsSent(PushDeviceTuple tuple){
57  		tuple.setSent();
58  		this.saveTuple(tuple);
59  	}
60  
61  	/*
62  	 * (non-Javadoc)
63  	 * @see org.kuali.mobility.push.dao.PushDeviceTupleDao#saveTuple(org.kuali.mobility.push.entity.PushDeviceTuple)
64  	 */
65  	public Long saveTuple(PushDeviceTuple tuple){
66  		Long id = null;
67  		if(tuple != null){
68  			if(tuple.getId() == null){
69  				entityManager.persist(tuple);
70  			}else{
71  				entityManager.merge(tuple);
72  			}
73  			id = tuple.getId();
74  		}
75  		return id;
76  	}
77  
78  
79  	/*
80  	 * (non-Javadoc)
81  	 * @see org.kuali.mobility.push.dao.PushDeviceTupleDao#findUnsentTuples()
82  	 */
83  	@SuppressWarnings("unchecked")
84  	public List<PushDeviceTuple> findUnsentTuples(){
85  		Query query = entityManager.createNamedQuery("PushDeviceTuple.findUnsent");
86  		return query.getResultList();
87  	}
88  
89  	
90  	/*
91  	 * (non-Javadoc)
92  	 * @see org.kuali.mobility.push.dao.PushDeviceTupleDao#findTuplesForPush(org.kuali.mobility.push.entity.Push)
93  	 */
94  	@SuppressWarnings("unchecked")
95  	public List<PushDeviceTuple> findTuplesForPush(Push push){
96  		Query query = entityManager.createNamedQuery("PushDeviceTuple.findTuplesForPush");
97  		query.setParameter("pushId", push.getPushId());
98  		return query.getResultList();
99  	}
100 
101 	/*
102 	 * (non-Javadoc)
103 	 * @see org.kuali.mobility.push.dao.PushDeviceTupleDao#findTuplesForPush(org.kuali.mobility.push.entity.Push)
104 	 */
105 	@Transactional
106 	public int removeTuplesForPush(Push push){
107 		LOG.info("PDTDI.removeTuplesForPush");
108 		int result = 0;
109 		if(null == push){
110 			return -1;
111 		}
112 		if(push.getPushId() != null){
113 			String hql = "DELETE PushDeviceTuple t WHERE t.pushId = :pushId";
114 			result = entityManager.createQuery(hql).setParameter("pushId", push.getPushId()).executeUpdate();
115 		}else{
116 			result = -1;
117 		}
118 		return result;
119 	}
120 	
121 	/**
122 	 * Return the <code>EntityManager</code> for this DaoImpl..
123 	 * @return
124 	 */
125 	public EntityManager getEntityManager() {
126 		return entityManager;
127 	}
128 
129 	/**
130 	 * Set the <code>EntityMAnager</code> for this DaoImpl.
131 	 * @param entityManager
132 	 */
133 	public void setEntityManager(EntityManager entityManager) {
134 		this.entityManager = entityManager;
135 	}
136 }