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

jp.webpay.api.Events Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package jp.webpay.api;

import jp.webpay.model.Event;
import jp.webpay.model.EventList;
import jp.webpay.request.ListRequest;
import lombok.NonNull;

import javax.ws.rs.core.Form;

public class Events extends Accessor {
    protected Events(WebPayClient client) {
        super(client);
    }

    public Event retrieve(@NonNull String id) {
        assertId(id);
        return Event.fromJsonResponse(client, client.get("/events/" + id));
    }

    public EventList all() {
        return all(new ListRequest(), null);
    }

    public EventList all(@NonNull ListRequest request) {
        return all(request, null);
    }

    public EventList all(@NonNull String type) {
        return all(new ListRequest(), type);
    }

    public EventList all(@NonNull ListRequest request, String type) {
        Form form = request.toForm();
        if (type != null && !type.isEmpty()) {
            form.param("type", type);
        }
        return EventList.fromJsonResponse(client, client.get("/events", form));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy