utility¶
Register a Zope Component Architecture “utility”.
Attributes¶
component- The utility component (cannot be specified if
factoryis specified). factory- A factory that creates a component (cannot be specified if
componentis specified). provides- The interface that an utility instance resulting from a lookup will provide.
name- The utility name.
Example¶
1 2 3 4 | <utility
provides=".interfaces.IMyUtility"
component=".utilities.MyUtility"
/>
|
Alternatives¶
Use the registerUtility method of the registry attribute of a
Configurator instance during initial application setup.
See Also¶
None.