org.mobicents.protocols.ss7.map.api.primitives.MAPExtensionContainer Java Examples

The following examples show how to use org.mobicents.protocols.ss7.map.api.primitives.MAPExtensionContainer. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SS7Honeypot.java    From SigFW with GNU Affero General Public License v3.0 5 votes vote down vote up
@Override
public void onDialogProviderAbort(MAPDialog mapDialog, MAPAbortProviderReason abortProviderReason,
        MAPAbortSource abortSource, MAPExtensionContainer extensionContainer) {
    logger.error(String
            .format("onDialogProviderAbort for DialogId=%d MAPAbortProviderReason=%s MAPAbortSource=%s MAPExtensionContainer=%s",
                    mapDialog.getLocalDialogId(), abortProviderReason, abortSource, extensionContainer));
}
 
Example #2
Source File: UpdateLocationResp.java    From SigPloit with MIT License 5 votes vote down vote up
public void onDialogRequest(MAPDialog mapDialog, AddressString destReference, AddressString origReference,
                            MAPExtensionContainer extensionContainer) {
    if (logger.isDebugEnabled()) {
        logger.debug(String
                .format("onDialogRequest for DialogId=%d DestinationReference=%s OriginReference=%s MAPExtensionContainer=%s",
                        mapDialog.getLocalDialogId(), destReference, origReference, extensionContainer));
    }
}
 
Example #3
Source File: UpdateLocationResp.java    From SigPloit with MIT License 5 votes vote down vote up
public void onDialogReject(MAPDialog mapDialog, MAPRefuseReason refuseReason,
                           ApplicationContextName alternativeApplicationContext, MAPExtensionContainer extensionContainer) {
    logger.error(String
            .format("onDialogReject for DialogId=%d MAPRefuseReason=%s MAPProviderError=%s ApplicationContextName=%s MAPExtensionContainer=%s",
                    mapDialog.getLocalDialogId(), refuseReason, alternativeApplicationContext,
                    extensionContainer));
}
 
Example #4
Source File: SriSMResp.java    From SigPloit with MIT License 5 votes vote down vote up
public void onDialogRequest(MAPDialog mapDialog, AddressString destReference, AddressString origReference,
                            MAPExtensionContainer extensionContainer) {
    if (logger.isDebugEnabled()) {
        logger.debug(String
                .format("onDialogRequest for DialogId=%d DestinationReference=%s OriginReference=%s MAPExtensionContainer=%s",
                        mapDialog.getLocalDialogId(), destReference, origReference, extensionContainer));
    }
}
 
Example #5
Source File: SriSMResp.java    From SigPloit with MIT License 5 votes vote down vote up
public void onDialogReject(MAPDialog mapDialog, MAPRefuseReason refuseReason,
                           ApplicationContextName alternativeApplicationContext, MAPExtensionContainer extensionContainer) {
    logger.error(String
            .format("onDialogReject for DialogId=%d MAPRefuseReason=%s MAPProviderError=%s ApplicationContextName=%s MAPExtensionContainer=%s",
                    mapDialog.getLocalDialogId(), refuseReason, alternativeApplicationContext,
                    extensionContainer));
}
 
Example #6
Source File: SS7Server.java    From SigFW with GNU Affero General Public License v3.0 5 votes vote down vote up
@Override
public void onDialogRequest(MAPDialog mapDialog, AddressString destReference, AddressString origReference,
        MAPExtensionContainer extensionContainer) {
    if (logger.isDebugEnabled()) {
        logger.debug(String
                .format("onDialogRequest for DialogId=%d DestinationReference=%s OriginReference=%s MAPExtensionContainer=%s",
                        mapDialog.getLocalDialogId(), destReference, origReference, extensionContainer));
    }
}
 
Example #7
Source File: SS7Server.java    From SigFW with GNU Affero General Public License v3.0 5 votes vote down vote up
@Override
public void onDialogReject(MAPDialog mapDialog, MAPRefuseReason refuseReason,
        ApplicationContextName alternativeApplicationContext, MAPExtensionContainer extensionContainer) {
    logger.error(String
            .format("onDialogReject for DialogId=%d MAPRefuseReason=%s MAPProviderError=%s ApplicationContextName=%s MAPExtensionContainer=%s",
                    mapDialog.getLocalDialogId(), refuseReason, alternativeApplicationContext,
                    extensionContainer));
}
 
Example #8
Source File: SS7Server.java    From SigFW with GNU Affero General Public License v3.0 5 votes vote down vote up
@Override
public void onDialogProviderAbort(MAPDialog mapDialog, MAPAbortProviderReason abortProviderReason,
        MAPAbortSource abortSource, MAPExtensionContainer extensionContainer) {
    logger.error(String
            .format("onDialogProviderAbort for DialogId=%d MAPAbortProviderReason=%s MAPAbortSource=%s MAPExtensionContainer=%s",
                    mapDialog.getLocalDialogId(), abortProviderReason, abortSource, extensionContainer));
}
 
Example #9
Source File: SS7Server.java    From SigFW with GNU Affero General Public License v3.0 5 votes vote down vote up
@Override
public void onDialogAccept(MAPDialog mapDialog, MAPExtensionContainer extensionContainer) {
    if (logger.isDebugEnabled()) {
        logger.debug(String.format("onDialogAccept for DialogId=%d MAPExtensionContainer=%s",
                mapDialog.getLocalDialogId(), extensionContainer));
    }
}
 
Example #10
Source File: SS7ClientLiveInput.java    From SigFW with GNU Affero General Public License v3.0 5 votes vote down vote up
@Override
public void onDialogRequest(MAPDialog mapDialog, AddressString destReference, AddressString origReference,
        MAPExtensionContainer extensionContainer) {
    if (logger.isDebugEnabled()) {
        logger.debug(String
                .format("onDialogRequest for DialogId=%d DestinationReference=%s OriginReference=%s MAPExtensionContainer=%s",
                        mapDialog.getLocalDialogId(), destReference, origReference, extensionContainer));
    }
}
 
Example #11
Source File: SS7ClientLiveInput.java    From SigFW with GNU Affero General Public License v3.0 5 votes vote down vote up
@Override
public void onDialogReject(MAPDialog mapDialog, MAPRefuseReason refuseReason,
        ApplicationContextName alternativeApplicationContext, MAPExtensionContainer extensionContainer) {
    logger.error(String
            .format("onDialogReject for DialogId=%d MAPRefuseReason=%s MAPProviderError=%s ApplicationContextName=%s MAPExtensionContainer=%s",
                    mapDialog.getLocalDialogId(), refuseReason, alternativeApplicationContext,
                    extensionContainer));
}
 
Example #12
Source File: SS7ClientLiveInput.java    From SigFW with GNU Affero General Public License v3.0 5 votes vote down vote up
@Override
public void onDialogProviderAbort(MAPDialog mapDialog, MAPAbortProviderReason abortProviderReason,
        MAPAbortSource abortSource, MAPExtensionContainer extensionContainer) {
    logger.error(String
            .format("onDialogProviderAbort for DialogId=%d MAPAbortProviderReason=%s MAPAbortSource=%s MAPExtensionContainer=%s",
                    mapDialog.getLocalDialogId(), abortProviderReason, abortSource, extensionContainer));
}
 
Example #13
Source File: SS7ClientLiveInput.java    From SigFW with GNU Affero General Public License v3.0 5 votes vote down vote up
@Override
public void onDialogAccept(MAPDialog mapDialog, MAPExtensionContainer extensionContainer) {
    if (logger.isDebugEnabled()) {
        logger.debug(String.format("onDialogAccept for DialogId=%d MAPExtensionContainer=%s",
                mapDialog.getLocalDialogId(), extensionContainer));
    }
}
 
Example #14
Source File: SS7Client.java    From SigFW with GNU Affero General Public License v3.0 5 votes vote down vote up
@Override
public void onDialogReject(MAPDialog mapDialog, MAPRefuseReason refuseReason,
        ApplicationContextName alternativeApplicationContext, MAPExtensionContainer extensionContainer) {
    logger.error(String
            .format("onDialogReject for DialogId=%d MAPRefuseReason=%s MAPProviderError=%s ApplicationContextName=%s MAPExtensionContainer=%s",
                    mapDialog.getLocalDialogId(), refuseReason, alternativeApplicationContext,
                    extensionContainer));
}
 
Example #15
Source File: SS7Client.java    From SigFW with GNU Affero General Public License v3.0 5 votes vote down vote up
@Override
public void onDialogProviderAbort(MAPDialog mapDialog, MAPAbortProviderReason abortProviderReason,
        MAPAbortSource abortSource, MAPExtensionContainer extensionContainer) {
    logger.error(String
            .format("onDialogProviderAbort for DialogId=%d MAPAbortProviderReason=%s MAPAbortSource=%s MAPExtensionContainer=%s",
                    mapDialog.getLocalDialogId(), abortProviderReason, abortSource, extensionContainer));
}
 
Example #16
Source File: SS7Client.java    From SigFW with GNU Affero General Public License v3.0 5 votes vote down vote up
@Override
public void onDialogAccept(MAPDialog mapDialog, MAPExtensionContainer extensionContainer) {
    if (logger.isDebugEnabled()) {
        logger.debug(String.format("onDialogAccept for DialogId=%d MAPExtensionContainer=%s",
                mapDialog.getLocalDialogId(), extensionContainer));
    }
}
 
Example #17
Source File: SS7Honeypot.java    From SigFW with GNU Affero General Public License v3.0 5 votes vote down vote up
@Override
public void onDialogAccept(MAPDialog mapDialog, MAPExtensionContainer extensionContainer) {
    if (logger.isDebugEnabled()) {
        logger.debug(String.format("onDialogAccept for DialogId=%d MAPExtensionContainer=%s",
                mapDialog.getLocalDialogId(), extensionContainer));
    }
}
 
Example #18
Source File: SS7Honeypot.java    From SigFW with GNU Affero General Public License v3.0 5 votes vote down vote up
@Override
public void onDialogReject(MAPDialog mapDialog, MAPRefuseReason refuseReason,
        ApplicationContextName alternativeApplicationContext, MAPExtensionContainer extensionContainer) {
    logger.error(String
            .format("onDialogReject for DialogId=%d MAPRefuseReason=%s MAPProviderError=%s ApplicationContextName=%s MAPExtensionContainer=%s",
                    mapDialog.getLocalDialogId(), refuseReason, alternativeApplicationContext,
                    extensionContainer));
}
 
Example #19
Source File: SS7Firewall.java    From SigFW with GNU Affero General Public License v3.0 5 votes vote down vote up
@Override
public void onDialogRequest(MAPDialog mapDialog, AddressString destReference, AddressString origReference,
        MAPExtensionContainer extensionContainer) {
    if (logger.isDebugEnabled()) {
        logger.debug(String
                .format("onDialogRequest for DialogId=%d DestinationReference=%s OriginReference=%s MAPExtensionContainer=%s",
                        mapDialog.getLocalDialogId(), destReference, origReference, extensionContainer));
    }
}
 
Example #20
Source File: SS7Firewall.java    From SigFW with GNU Affero General Public License v3.0 5 votes vote down vote up
@Override
public void onDialogReject(MAPDialog mapDialog, MAPRefuseReason refuseReason,
        ApplicationContextName alternativeApplicationContext, MAPExtensionContainer extensionContainer) {
    logger.error(String
            .format("onDialogReject for DialogId=%d MAPRefuseReason=%s MAPProviderError=%s ApplicationContextName=%s MAPExtensionContainer=%s",
                    mapDialog.getLocalDialogId(), refuseReason, alternativeApplicationContext,
                    extensionContainer));
}
 
Example #21
Source File: SS7Firewall.java    From SigFW with GNU Affero General Public License v3.0 5 votes vote down vote up
@Override
public void onDialogProviderAbort(MAPDialog mapDialog, MAPAbortProviderReason abortProviderReason,
        MAPAbortSource abortSource, MAPExtensionContainer extensionContainer) {
    logger.error(String
            .format("onDialogProviderAbort for DialogId=%d MAPAbortProviderReason=%s MAPAbortSource=%s MAPExtensionContainer=%s",
                    mapDialog.getLocalDialogId(), abortProviderReason, abortSource, extensionContainer));
}
 
Example #22
Source File: SS7Firewall.java    From SigFW with GNU Affero General Public License v3.0 5 votes vote down vote up
@Override
public void onDialogAccept(MAPDialog mapDialog, MAPExtensionContainer extensionContainer) {
    if (logger.isDebugEnabled()) {
        logger.debug(String.format("onDialogAccept for DialogId=%d MAPExtensionContainer=%s",
                mapDialog.getLocalDialogId(), extensionContainer));
    }
}
 
Example #23
Source File: SS7Client.java    From SigFW with GNU Affero General Public License v3.0 5 votes vote down vote up
@Override
public void onDialogRequest(MAPDialog mapDialog, AddressString destReference, AddressString origReference,
        MAPExtensionContainer extensionContainer) {
    if (logger.isDebugEnabled()) {
        logger.debug(String
                .format("onDialogRequest for DialogId=%d DestinationReference=%s OriginReference=%s MAPExtensionContainer=%s",
                        mapDialog.getLocalDialogId(), destReference, origReference, extensionContainer));
    }
}
 
Example #24
Source File: SS7Honeypot.java    From SigFW with GNU Affero General Public License v3.0 5 votes vote down vote up
@Override
public void onDialogRequest(MAPDialog mapDialog, AddressString destReference, AddressString origReference,
        MAPExtensionContainer extensionContainer) {
    if (logger.isDebugEnabled()) {
        logger.debug(String
                .format("onDialogRequest for DialogId=%d DestinationReference=%s OriginReference=%s MAPExtensionContainer=%s",
                        mapDialog.getLocalDialogId(), destReference, origReference, extensionContainer));
    }
}
 
Example #25
Source File: SS7Server.java    From SigFW with GNU Affero General Public License v3.0 4 votes vote down vote up
@Override
public void onDialogUserAbort(MAPDialog mapDialog, MAPUserAbortChoice userReason,
        MAPExtensionContainer extensionContainer) {
    logger.error(String.format("onDialogUserAbort for DialogId=%d MAPUserAbortChoice=%s MAPExtensionContainer=%s",
            mapDialog.getLocalDialogId(), userReason, extensionContainer));
}
 
Example #26
Source File: UpdateLocationResp.java    From SigPloit with MIT License 4 votes vote down vote up
public void onDialogUserAbort(MAPDialog mapDialog, MAPUserAbortChoice userReason,
                              MAPExtensionContainer extensionContainer) {
    logger.error(String.format("onDialogUserAbort for DialogId=%d MAPUserAbortChoice=%s MAPExtensionContainer=%s",
            mapDialog.getLocalDialogId(), userReason, extensionContainer));
}
 
Example #27
Source File: UpdateLocationResp.java    From SigPloit with MIT License 4 votes vote down vote up
public void onDialogProviderAbort(MAPDialog mapDialog, MAPAbortProviderReason abortProviderReason,
                                  MAPAbortSource abortSource, MAPExtensionContainer extensionContainer) {
    logger.error(String
            .format("onDialogProviderAbort for DialogId=%d MAPAbortProviderReason=%s MAPAbortSource=%s MAPExtensionContainer=%s",
                    mapDialog.getLocalDialogId(), abortProviderReason, abortSource, extensionContainer));
}
 
Example #28
Source File: UpdateLocationResp.java    From SigPloit with MIT License 4 votes vote down vote up
public void onDialogAccept(MAPDialog mapDialog, MAPExtensionContainer extensionContainer) {
    if (logger.isDebugEnabled()) {
        logger.debug(String.format("onDialogAccept for DialogId=%d MAPExtensionContainer=%s",
                mapDialog.getLocalDialogId(), extensionContainer));
    }
}
 
Example #29
Source File: SriSMResp.java    From SigPloit with MIT License 4 votes vote down vote up
public void onDialogUserAbort(MAPDialog mapDialog, MAPUserAbortChoice userReason,
                              MAPExtensionContainer extensionContainer) {
    logger.error(String.format("onDialogUserAbort for DialogId=%d MAPUserAbortChoice=%s MAPExtensionContainer=%s",
            mapDialog.getLocalDialogId(), userReason, extensionContainer));
}
 
Example #30
Source File: SS7Honeypot.java    From SigFW with GNU Affero General Public License v3.0 4 votes vote down vote up
@Override
public void onDialogUserAbort(MAPDialog mapDialog, MAPUserAbortChoice userReason,
        MAPExtensionContainer extensionContainer) {
    logger.error(String.format("onDialogUserAbort for DialogId=%d MAPUserAbortChoice=%s MAPExtensionContainer=%s",
            mapDialog.getLocalDialogId(), userReason, extensionContainer));
}