blob: cfe7521ac9d88cd1c6baee2c4a8c04738c9beebe [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License") + you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.openmeetings.db.dao.calendar;
import static org.apache.openmeetings.util.OpenmeetingsVariables.webAppRootKey;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import javax.persistence.EntityManager;
import javax.persistence.NoResultException;
import javax.persistence.PersistenceContext;
import org.apache.openmeetings.db.dao.user.UserDao;
import org.apache.openmeetings.db.entity.calendar.MeetingMember;
import org.red5.logging.Red5LoggerFactory;
import org.slf4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Transactional;
@Transactional
public class MeetingMemberDao {
private static final Logger log = Red5LoggerFactory.getLogger(MeetingMemberDao.class, webAppRootKey);
@PersistenceContext
private EntityManager em;
@Autowired
private AppointmentDao appointmentDao;
@Autowired
private UserDao usersDao;
public MeetingMember get(Long meetingMemberId) {
MeetingMember meetingMember = null;
try {
meetingMember = em.createNamedQuery("getMeetingMemberById", MeetingMember.class)
.setParameter("id", meetingMemberId).getSingleResult();
} catch (NoResultException ex) {
}
return meetingMember;
}
public List<MeetingMember> getMeetingMembers() {
return em.createNamedQuery("getMeetingMembers", MeetingMember.class).getResultList();
}
public Set<Long> getMeetingMemberIdsByAppointment(Long appointmentId) {
log.debug("getMeetingMemberIdsByAppointment: " + appointmentId);
return new HashSet<Long>(em.createNamedQuery("getMeetingMemberIdsByAppointment", Long.class)
.setParameter("id", appointmentId)
.getResultList());
}
/**
* Updating MeetingMember
*/
// -------------------------------------------------------------------------------
public MeetingMember update(MeetingMember meetingMember) {
if (meetingMember.getId() == null) {
em.persist(meetingMember);
} else {
if (!em.contains(meetingMember)) {
meetingMember = em.merge(meetingMember);
}
}
return meetingMember;
}
}