All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.youcruit.billogram.client.EventClient Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package com.youcruit.billogram.client;

import java.io.IOException;

import com.youcruit.billogram.client.http.HttpClient;
import com.youcruit.billogram.objects.request.Search;
import com.youcruit.billogram.objects.request.event.EventFilterField;
import com.youcruit.billogram.objects.request.event.EventOrderField;
import com.youcruit.billogram.objects.response.common.Response;
import com.youcruit.billogram.objects.response.event.Event;
import com.youcruit.billogram.objects.response.event.EventSearchResponse;

public class EventClient extends AbstractRestClient {

    public EventClient(HttpClient httpClient) {
	super(httpClient, "billogram_event", EventSearchResponse.class, Response.class);
    }

    @Override
    public void searchAsync(Search search, BillogramCallback callback) {
	super.searchAsync(search, callback);
    }

    @Override
    public EventSearchResponse search(Search search) throws IOException {
	return super.search(search);
    }

    @Override
    protected String getId(Event fullEvent) {
	return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy