
org.restcomm.connect.dao.mybatis.MybatisMediaResourceBrokerDao Maven / Gradle / Ivy
/*
* TeleStax, Open Source Cloud Communications
* Copyright 2011-2014, Telestax Inc and individual contributors
* by the @authors tag.
*
* This program is free software: you can redistribute it and/or modify
* under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation; either version 3 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see
*
*/
package org.restcomm.connect.dao.mybatis;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;
import org.restcomm.connect.commons.annotations.concurrency.ThreadSafe;
import org.restcomm.connect.commons.dao.Sid;
import org.restcomm.connect.dao.DaoUtils;
import org.restcomm.connect.dao.MediaResourceBrokerDao;
import org.restcomm.connect.dao.entities.MediaResourceBrokerEntity;
import org.restcomm.connect.dao.entities.MediaResourceBrokerEntityFilter;
/**
* @author [email protected] (Maria Farooq)
*/
@ThreadSafe
public final class MybatisMediaResourceBrokerDao implements MediaResourceBrokerDao {
private static final String namespace = "org.mobicents.servlet.sip.restcomm.dao.MediaResourceBrokerDao.";
private final SqlSessionFactory sessions;
public MybatisMediaResourceBrokerDao(final SqlSessionFactory sessions) {
super();
this.sessions = sessions;
}
@Override
public void addMediaResourceBrokerEntity(MediaResourceBrokerEntity ms) {
final SqlSession session = sessions.openSession();
try {
session.insert(namespace + "addMediaResourceBrokerEntity", toMap(ms));
session.commit();
} finally {
session.close();
}
}
@Override
public void updateMediaResource(MediaResourceBrokerEntity ms) {
final SqlSession session = sessions.openSession();
try {
session.insert(namespace + "updateMediaResource", toMap(ms));
session.commit();
} finally {
session.close();
}
}
@Override
public List getMediaResourceBrokerEntities() {
final SqlSession session = sessions.openSession();
try {
final List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy