use of org.jdiameter.common.impl.app.cxdx.JServerAssignmentRequestImpl in project jain-slee.diameter by RestComm.
the class CxDxClientSessionImpl method sendServerAssignmentRequest.
/* (non-Javadoc)
* @see net.java.slee.resource.diameter.cxdx.CxDxClientSession#sendServerAssignmentRequest(net.java.slee.resource.diameter.cxdx.events.ServerAssignmentRequest)
*/
public void sendServerAssignmentRequest(ServerAssignmentRequest serverAssignmentRequest) throws IOException {
try {
DiameterMessageImpl msg = (DiameterMessageImpl) serverAssignmentRequest;
appSession.sendServerAssignmentRequest(new JServerAssignmentRequestImpl(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