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

com.github.jensborch.webhooks.mongodb.SubscriberStatusRepository Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package com.github.jensborch.webhooks.mongodb;

import javax.enterprise.context.ApplicationScoped;
import javax.inject.Inject;

import com.mongodb.client.MongoCollection;
import com.github.jensborch.webhooks.WebhookEventStatus;
import com.github.jensborch.webhooks.subscriber.Subscriber;

/**
 * Repository for consumed webhooks status.
 */
@Subscriber
@ApplicationScoped
public class SubscriberStatusRepository extends AbstractStatusRepository {

    @Inject
    @Subscriber
    private MongoCollection collection;

    @Override
    protected MongoCollection collection() {
        return collection;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy