java.lang.Object
it.rebirthproject.ufoeb.dto.registrations.Registration
- Direct Known Subclasses:
RegistrationMethodHandler
,RegistrationStandardReflection
Interface representing a registration.
-
Field Summary
Modifier and TypeFieldDescriptionprotected Object
The listener of theRegistration
protected Method
The callback method to invoke when a new notification for the listener needs to be deliveredprotected int
The priority of theRegistration
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGetter for the listener of theRegistration
Getter for method to invoke when a new notification for the listener needs to be deliveredint
Getter for the priority of theRegistration
abstract void
Method to process a registration
-
Field Details
-
listener
The listener of theRegistration
-
priority
protected int priorityThe priority of theRegistration
-
method
The callback method to invoke when a new notification for the listener needs to be delivered
-
-
Constructor Details
-
Registration
public Registration()
-
-
Method Details
-
process
Method to process a registration- Parameters:
event
- the event to process- Throws:
Exception
-
getListener
Getter for the listener of theRegistration
- Returns:
- The listener of the
Registration
-
getPriority
public int getPriority()Getter for the priority of theRegistration
- Returns:
- The priority of the
Registration
-
getMethod
Getter for method to invoke when a new notification for the listener needs to be delivered- Returns:
- The method to invoke when a new notification for the listener needs to be delivered
-