| EntityActionsManager |
Handles everything related to the custom actions registration and execution
|
| EntityBatchHandler |
This handles batch operations internally as much as possible,
the idea is to provide for a standard way to reduce huge numbers of calls down to 1 call to the server
which puts the data together into a single response
|
| EntityBatchHandler.ResponseBase |
Base class for all response data which will be encoded and output
|
| EntityBrokerRESTServiceManager |
This creates all the needed services (as if it were a service manager),
this will let us create the services we need without too much confusion and ensure
we are using the same ones
If this is used then the services should not be created in some other way but should be
initiated here and then exported from this class only
|
| EntityDescriptionManager |
This handles all the methods related to generating descriptions for entities,
html and xml currently supported
|
| EntityEncodingManager |
This handles the internal encoding (translation and formatting) of entity data,
this can be used by various parts of the EB system
this is for internal use only currently but may be exposed later
|
| EntityHandlerImpl |
Implementation of the handler for the EntityBroker system
This handles all the processing of incoming requests (http based) and includes
method to process the request data and ensure classloader safety
|
| EntityRedirectsManager |
Handles everything related the URL redirects handling and processing
|
| EntityRESTProviderBase |
This is the standard entity REST provider which will be created and set in the entity broker manager,
it will register itself with the entitybrokermanager on startup or construction,
it should also be unregistered correctly
|