|
The BaseConnector consists of these components: - Store schemas: A vendor-neutral representation of the library domain, defined in XML and database schemas (e.g. Borrower, Loan).
- Store: An implementation of the store schemas in a RDBMS.
- Service layer: A set of services for accessing data in the store.
- Service descriptor: A description of the services available from the service layer. This could be implemented using something like WADL.
- WebLayer: A web application which presents the service layer over HTTP to clients.
The BaseConnector implements some functionality of a fully-fledged ILS, but only enough to experiment with. It does not provide enough functionality to run a library off of :)
|