Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 794 Bytes

adapter.rst

File metadata and controls

47 lines (32 loc) · 794 Bytes

adapter

Register a Zope Component Architecture "adapter".

Attributes

factory

The adapter factory (often a class).

provides

The interface that an adapter instance resulting from a lookup will provide.

for

Interfaces or classes to be adapted, separated by spaces, e.g. interfaces.IFoo interfaces.IBar.

name

The adapter name.

Example

<adapter
  for=".foo.IFoo .bar.IBar"
  provides=".interfaces.IMyAdapter"
  factory=".adapters.MyAdapter"
  />

Alternatives

Use the registerAdapter method of the registry attribute of a Configurator instance during initial application setup.

See Also

None.