org.restcomm.ss7.hardware.dahdi.DahdiMtp3UserPart Maven / Gradle / Ivy
The newest version!
/*
* TeleStax, Open Source Cloud Communications Copyright 2012.
* and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.restcomm.ss7.hardware.dahdi;
import java.io.IOException;
import org.restcomm.protocols.ss7.mtp.Mtp3TransferPrimitive;
import org.restcomm.protocols.ss7.mtp.Mtp3TransferPrimitiveFactory;
import org.restcomm.protocols.ss7.mtp.Mtp3UserPart;
import org.restcomm.protocols.ss7.mtp.Mtp3UserPartListener;
import org.restcomm.protocols.ss7.mtp.RoutingLabelFormat;
import org.restcomm.ss7.congestion.ExecutorCongestionMonitor;
/**
*
* @author amit bhayani
*
*/
public class DahdiMtp3UserPart implements Mtp3UserPart {
@Override
public void addMtp3UserPartListener(Mtp3UserPartListener arg0) {
// TODO Auto-generated method stub
}
@Override
public int getMaxUserDataLength(int arg0) {
// TODO Auto-generated method stub
return 0;
}
@Override
public void removeMtp3UserPartListener(Mtp3UserPartListener arg0) {
// TODO Auto-generated method stub
}
@Override
public void sendMessage(Mtp3TransferPrimitive arg0) throws IOException {
// TODO Auto-generated method stub
}
/*
* (non-Javadoc)
*
* @see org.restcomm.protocols.ss7.mtp.Mtp3UserPart#getMtp3TransferPrimitiveFactory()
*/
@Override
public Mtp3TransferPrimitiveFactory getMtp3TransferPrimitiveFactory() {
// TODO Auto-generated method stub
return null;
}
/*
* (non-Javadoc)
*
* @see org.restcomm.protocols.ss7.mtp.Mtp3UserPart#getRoutingLabelFormat()
*/
@Override
public RoutingLabelFormat getRoutingLabelFormat() {
// TODO Auto-generated method stub
return null;
}
/*
* (non-Javadoc)
*
* @see
* org.restcomm.protocols.ss7.mtp.Mtp3UserPart#setRoutingLabelFormat(org.restcomm.protocols.ss7.mtp.RoutingLabelFormat)
*/
@Override
public void setRoutingLabelFormat(RoutingLabelFormat arg0) {
// TODO Auto-generated method stub
}
@Override
public boolean isUseLsbForLinksetSelection() {
// TODO Auto-generated method stub
return false;
}
@Override
public void setUseLsbForLinksetSelection(boolean arg0) {
// TODO Auto-generated method stub
}
@Override
public int getDeliveryMessageThreadCount() {
// TODO Auto-generated method stub
return 0;
}
@Override
public void setDeliveryMessageThreadCount(int deliveryMessageThreadCount) {
// TODO Auto-generated method stub
}
@Override
public ExecutorCongestionMonitor getExecutorCongestionMonitor() {
// TODO Auto-generated method stub
return null;
}
@Override
public void start() throws Exception {
// TODO Auto-generated method stub
}
@Override
public void stop() throws Exception {
// TODO Auto-generated method stub
}
}