Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* 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.IncomingPhoneNumbersDao;
import org.restcomm.connect.dao.entities.IncomingPhoneNumberFilter;
import org.restcomm.connect.commons.dao.Sid;
import org.restcomm.connect.commons.annotations.concurrency.ThreadSafe;
import org.restcomm.connect.dao.entities.IncomingPhoneNumber;
/**
* @author [email protected] (Thomas Quintana)
* @author [email protected]
*/
@ThreadSafe
public final class MybatisIncomingPhoneNumbersDao implements IncomingPhoneNumbersDao {
private static final String namespace = "org.mobicents.servlet.sip.restcomm.dao.IncomingPhoneNumbersDao.";
private final SqlSessionFactory sessions;
public MybatisIncomingPhoneNumbersDao(final SqlSessionFactory sessions) {
super();
this.sessions = sessions;
}
@Override
public void addIncomingPhoneNumber(final IncomingPhoneNumber incomingPhoneNumber) {
final SqlSession session = sessions.openSession();
try {
session.insert(namespace + "addIncomingPhoneNumber", toMap(incomingPhoneNumber));
session.commit();
} finally {
session.close();
}
}
@Override
public IncomingPhoneNumber getIncomingPhoneNumber(final Sid sid) {
return getIncomingPhoneNumber("getIncomingPhoneNumber", sid.toString());
}
@Override
public IncomingPhoneNumber getIncomingPhoneNumber(final String phoneNumber) {
return getIncomingPhoneNumber("getIncomingPhoneNumberByValue", phoneNumber);
}
private IncomingPhoneNumber getIncomingPhoneNumber(final String selector, Object parameter) {
final SqlSession session = sessions.openSession();
try {
final Map result = session.selectOne(namespace + selector, parameter);
if (result != null) {
return toIncomingPhoneNumber(result);
} else {
return null;
}
} finally {
session.close();
}
}
@Override
public List getIncomingPhoneNumbers(final Sid accountSid) {
final SqlSession session = sessions.openSession();
try {
final List