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.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.dao.DaoUtils;
import org.restcomm.connect.dao.AvailablePhoneNumbersDao;
import org.restcomm.connect.dao.entities.AvailablePhoneNumber;
import org.restcomm.connect.commons.annotations.concurrency.ThreadSafe;
/**
* @author [email protected] (Thomas Quintana)
*/
@ThreadSafe
public final class MybatisAvailablePhoneNumbersDao implements AvailablePhoneNumbersDao {
private static final String namespace = "org.mobicents.servlet.sip.restcomm.dao.AvailablePhoneNumbersDao.";
private static final char[] lookupTable = new char[] { '2', '2', '2', '3', '3', '3', '4', '4', '4', '5', '5', '5', '6',
'6', '6', '7', '7', '7', '7', '8', '8', '8', '9', '9', '9', '9' };
private final SqlSessionFactory sessions;
public MybatisAvailablePhoneNumbersDao(final SqlSessionFactory sessions) {
super();
this.sessions = sessions;
}
@Override
public void addAvailablePhoneNumber(final AvailablePhoneNumber availablePhoneNumber) {
final SqlSession session = sessions.openSession();
try {
session.insert(namespace + "addAvailablePhoneNumber", toMap(availablePhoneNumber));
session.commit();
} finally {
session.close();
}
}
private List getAvailablePhoneNumbers(final String selector, final Object parameter) {
final SqlSession session = sessions.openSession();
try {
List