Previous | Next | Trail Map | Building a Service Provider | The Essential Components

Implementing a Context Implementation

A context implementation is a class that implements the Context(in the API reference documentation) interface. It is the guts of a service provider, which is responsible for handling almost all of the requests submitted by the user program.

The user program accesses a context implementation in two ways:

A context implementation must provide a definition for each method in the Context interface. These methods can be categorized as follows:

Details on how to implement these methods and miscellaneous tips are shown in the next sections.


Previous | Next | Trail Map | Building a Service Provider | The Essential Components