org.mobicents.protocols.ss7.map.api.service.mobility.subscriberInformation.AnyTimeInterrogationResponse Java Examples

The following examples show how to use org.mobicents.protocols.ss7.map.api.service.mobility.subscriberInformation.AnyTimeInterrogationResponse. 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: Server.java    From gmlc with GNU Affero General Public License v3.0 5 votes vote down vote up
public void onAnyTimeInterrogationResponse(AnyTimeInterrogationResponse atiResp) {
  /*
   * This is an error condition. Server should never receive onAnyTimeInterrogationResponse.
   */
  logger.error(String.format("onAnyTimeInterrogationRequest for Dialog=%d and invokeId=%d",
      atiResp.getMAPDialog().getLocalDialogId(), atiResp.getInvokeId()));

}
 
Example #2
Source File: SS7Honeypot.java    From SigFW with GNU Affero General Public License v3.0 4 votes vote down vote up
public void onAnyTimeInterrogationResponse(AnyTimeInterrogationResponse atir) {
    logger.debug("[[[[[[[[[[    onAnyTimeInterrogationResponse      ]]]]]]]]]]");
}
 
Example #3
Source File: SS7Firewall.java    From SigFW with GNU Affero General Public License v3.0 4 votes vote down vote up
@Override
public void onAnyTimeInterrogationResponse(AnyTimeInterrogationResponse response) {
    //throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    logger.debug("[[[[[[[[[[   onAnyTimeInterrogationResponse      ]]]]]]]]]]");
}
 
Example #4
Source File: SendRoutingInfoResp.java    From SigPloit with MIT License 2 votes vote down vote up
@Override
public void onAnyTimeInterrogationResponse(AnyTimeInterrogationResponse anyTimeInterrogationResponse) {

}
 
Example #5
Source File: UpdateLocationResp.java    From SigPloit with MIT License 2 votes vote down vote up
@Override
public void onAnyTimeInterrogationResponse(AnyTimeInterrogationResponse anyTimeInterrogationResponse) {

}
 
Example #6
Source File: TestHarness.java    From gmlc with GNU Affero General Public License v3.0 votes vote down vote up
public abstract void onAnyTimeInterrogationResponse(AnyTimeInterrogationResponse atiResp);