/* * 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.mobicents.protocols.ss7.tcapAnsi; import java.util.Map; import org.mobicents.protocols.ss7.sccp.SccpProvider; import org.mobicents.protocols.ss7.sccp.parameter.SccpAddress; import org.mobicents.protocols.ss7.tcapAnsi.PreviewDialogData; import org.mobicents.protocols.ss7.tcapAnsi.TCAPProviderImpl; import org.mobicents.protocols.ss7.tcapAnsi.TCAPStackImpl; import org.mobicents.protocols.ss7.tcapAnsi.api.TCAPException; import org.mobicents.protocols.ss7.tcapAnsi.api.tc.dialog.Dialog; /** * * @author sergey vetyutnev * */ public class TCAPProviderImplWrapper extends TCAPProviderImpl { protected TCAPProviderImplWrapper(SccpProvider sccpProvider, TCAPStackImpl stack, int ssn) { super(sccpProvider, stack, ssn); } public Map<PreviewDialogDataKey, PreviewDialogData> getDialogPreviewList() { return dialogPreviewList; } public Long getAvailableTxIdPreview() throws TCAPException { return super.getAvailableTxIdPreview(); } public Dialog createPreviewDialog(PreviewDialogDataKey ky, SccpAddress localAddress, SccpAddress remoteAddress, int seqControl) throws TCAPException { return super.createPreviewDialog(ky, localAddress, remoteAddress, seqControl); } public Dialog getPreviewDialog(PreviewDialogDataKey ky1, PreviewDialogDataKey ky2, SccpAddress localAddress, SccpAddress remoteAddress, int seqControl) { return super.getPreviewDialog(ky1, ky2, localAddress, remoteAddress, seqControl); } public void removePreviewDialog(DialogImpl di) { super.removePreviewDialog(di); } }