Search in sources :

Example 1 with CallListRemoveHandler

use of de.janrufmonitor.service.client.request.handler.CallListRemoveHandler in project janrufmonitor by tbrandt77.

the class HttpCallManager method removeCalls.

public void removeCalls(ICallList calllist) {
    if (!this.isConnected()) {
        this.m_logger.warning("Client is not yet connected with the server.");
        return;
    }
    IRequester r = this.getRequester(new CallListRemoveHandler(calllist, this.getCallManager()));
    IHttpResponse resp = r.request();
    this.handleRequester(resp, r);
}
Also used : IRequester(de.janrufmonitor.service.commons.http.IRequester) CallListRemoveHandler(de.janrufmonitor.service.client.request.handler.CallListRemoveHandler) IHttpResponse(de.janrufmonitor.service.commons.http.IHttpResponse)

Aggregations

CallListRemoveHandler (de.janrufmonitor.service.client.request.handler.CallListRemoveHandler)1 IHttpResponse (de.janrufmonitor.service.commons.http.IHttpResponse)1 IRequester (de.janrufmonitor.service.commons.http.IRequester)1