Search in sources :

Example 1 with CallerListRemoveHandler

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

the class HttpCallerManager method removeCaller.

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

Aggregations

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