use of org.jdiameter.common.impl.app.cxdx.JLocationInfoRequestImpl in project jain-slee.diameter by RestComm.
the class CxDxClientSessionImpl method sendLocationInfoRequest.
/* (non-Javadoc)
* @see net.java.slee.resource.diameter.cxdx.CxDxClientSession#sendLocationInfoRequest(net.java.slee.resource.diameter.cxdx.events.LocationInfoRequest)
*/
public void sendLocationInfoRequest(LocationInfoRequest locationInfoRequest) throws IOException {
try {
DiameterMessageImpl msg = (DiameterMessageImpl) locationInfoRequest;
appSession.sendLocationInformationRequest(new JLocationInfoRequestImpl(msg.getGenericData()));
} catch (org.jdiameter.api.validation.AvpNotAllowedException anae) {
throw new AvpNotAllowedException(anae.getMessage(), anae.getAvpCode(), anae.getVendorId());
} catch (Exception e) {
throw new IOException(e.getMessage());
}
}
Aggregations