
org.restcomm.connect.dao.mybatis.MybatisShortCodesDao 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.net.URI;
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.joda.time.DateTime;
import org.restcomm.connect.dao.DaoUtils;
import org.restcomm.connect.dao.ShortCodesDao;
import org.restcomm.connect.dao.entities.ShortCode;
import org.restcomm.connect.commons.dao.Sid;
import org.restcomm.connect.commons.annotations.concurrency.ThreadSafe;
/**
* @author [email protected] (Thomas Quintana)
*/
@ThreadSafe
public final class MybatisShortCodesDao implements ShortCodesDao {
private static final String namespace = "org.mobicents.servlet.sip.restcomm.dao.ShortCodesDao.";
private final SqlSessionFactory sessions;
public MybatisShortCodesDao(final SqlSessionFactory sessions) {
super();
this.sessions = sessions;
}
@Override
public void addShortCode(final ShortCode shortCode) {
final SqlSession session = sessions.openSession();
try {
session.insert(namespace + "addShortCode", toMap(shortCode));
session.commit();
} finally {
session.close();
}
}
@Override
public ShortCode getShortCode(final Sid sid) {
final SqlSession session = sessions.openSession();
try {
final Map result = session.selectOne(namespace + "getShortCode", sid.toString());
if (result != null) {
return toShortCode(result);
} else {
return null;
}
} finally {
session.close();
}
}
@Override
public List getShortCodes(final Sid accountSid) {
final SqlSession session = sessions.openSession();
try {
final List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy