Package | Description |
---|---|
com.rometools.certiorem.hub |
This package contains the core of the Hub implementation.
|
com.rometools.certiorem.hub.data |
This package defines the basic data types and persistence mechanisms
that are required for a hub implementation.
|
com.rometools.certiorem.hub.data.jpa |
A stock data implementation based on the Java Persistence API.
|
com.rometools.certiorem.hub.data.ram |
Contains a Memory-Resident implemtnation of the Hub DAO.
|
com.rometools.certiorem.hub.notify.standard |
This package contains a set of standard Verifier implementations.
|
com.rometools.certiorem.hub.verify.standard |
This package contains a set of standard Verifier implementations.
|
Modifier and Type | Method and Description |
---|---|
boolean |
Verifier.verifySubcribeSyncronously(Subscriber subscriber)
Deprecated.
Verifies a subscriber syncronously
|
void |
Verifier.verifySubscribeAsyncronously(Subscriber subscriber,
Verifier.VerificationCallback callback)
Deprecated.
Verifies a subscriber (possibly) asyncronously
|
boolean |
Verifier.verifyUnsubcribeSyncronously(Subscriber subscriber)
Deprecated.
Verifies an unsubscribe syncronously
|
void |
Verifier.verifyUnsubscribeAsyncronously(Subscriber subscriber,
Verifier.VerificationCallback callback)
Deprecated.
Verifies am unsubscribe (possibly) asyncronously
|
Modifier and Type | Method and Description |
---|---|
void |
Notifier.notifySubscribers(java.util.List<? extends Subscriber> subscribers,
SyndFeed value,
Notifier.SubscriptionSummaryCallback callback)
Deprecated.
Instructs the notifier to begin sending notifications to the list of subscribers
|
Modifier and Type | Method and Description |
---|---|
Subscriber |
HubDAO.addSubscriber(Subscriber subscriber)
Deprecated.
|
Subscriber |
HubDAO.findSubscriber(java.lang.String topic,
java.lang.String callbackUrl)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<? extends Subscriber> |
HubDAO.subscribersForTopic(java.lang.String topic)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Subscriber |
HubDAO.addSubscriber(Subscriber subscriber)
Deprecated.
|
Modifier and Type | Class and Description |
---|---|
class |
JPASubscriber
Deprecated.
Certiorem will be removed in Rome 2.
|
Modifier and Type | Method and Description |
---|---|
Subscriber |
JPADAO.addSubscriber(Subscriber subscriber)
Deprecated.
|
Subscriber |
JPADAO.findSubscriber(java.lang.String topic,
java.lang.String callbackUrl)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<? extends Subscriber> |
JPADAO.subscribersForTopic(java.lang.String topic)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Subscriber |
JPADAO.addSubscriber(Subscriber subscriber)
Deprecated.
|
void |
JPASubscriber.copyFrom(Subscriber source)
Deprecated.
|
Modifier and Type | Field and Description |
---|---|
private java.util.concurrent.ConcurrentHashMap<java.lang.String,java.util.List<Subscriber>> |
InMemoryHubDAO.subscribers
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Subscriber |
InMemoryHubDAO.addSubscriber(Subscriber subscriber)
Deprecated.
|
Subscriber |
InMemoryHubDAO.findSubscriber(java.lang.String topic,
java.lang.String callbackUrl)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<? extends Subscriber> |
InMemoryHubDAO.subscribersForTopic(java.lang.String topic)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Subscriber |
InMemoryHubDAO.addSubscriber(Subscriber subscriber)
Deprecated.
|
Modifier and Type | Field and Description |
---|---|
(package private) Subscriber |
Notification.subscriber
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
protected SubscriptionSummary |
AbstractNotifier.postNotification(Subscriber subscriber,
java.lang.String mimeType,
byte[] payload)
Deprecated.
POSTs the payload to the subscriber's callback and returns a SubscriptionSummary with
subscriber counts (where possible) and the success state of the notification.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractNotifier.notifySubscribers(java.util.List<? extends Subscriber> subscribers,
SyndFeed value,
Notifier.SubscriptionSummaryCallback callback)
Deprecated.
This method will serialize the synd feed and build Notifications for the implementation class
to handle.
|
Modifier and Type | Method and Description |
---|---|
private boolean |
AbstractVerifier.doOp(java.lang.String mode,
Subscriber subscriber)
Deprecated.
|
boolean |
AbstractVerifier.verifySubcribeSyncronously(Subscriber subscriber)
Deprecated.
|
void |
UnthreadedVerifier.verifySubscribeAsyncronously(Subscriber subscriber,
Verifier.VerificationCallback callback)
Deprecated.
|
void |
ThreadPoolVerifier.verifySubscribeAsyncronously(Subscriber subscriber,
Verifier.VerificationCallback callback)
Deprecated.
|
boolean |
AbstractVerifier.verifyUnsubcribeSyncronously(Subscriber subscriber)
Deprecated.
|
void |
UnthreadedVerifier.verifyUnsubscribeAsyncronously(Subscriber subscriber,
Verifier.VerificationCallback callback)
Deprecated.
|
void |
ThreadPoolVerifier.verifyUnsubscribeAsyncronously(Subscriber subscriber,
Verifier.VerificationCallback callback)
Deprecated.
|