source: products/quintagroup.canonicalpath/trunk/quintagroup/canonicalpath/interfaces.py @ 3599

Last change on this file since 3599 was 3599, checked in by vmaksymiv, 11 years ago

PPP fixes

  • Property svn:eol-style set to native
File size: 570 bytes
Line 
1from zope.interface import Interface, Attribute
2
3
4class ICanonicalPath(Interface):
5    """canonical_path provider interface
6    """
7
8    canonical_path = Attribute(
9        "canonical_path",
10        "canonical_path - for the object. Adapter must implement "
11        "*setter* and *getter* for the attribute")
12
13
14class ICanonicalLink(Interface):
15    """canonical_link provider interface
16    """
17
18    canonical_link = Attribute(
19        "canonical_link",
20        "canonical_link - for the object. Adapter must implement "
21        "*setter* and *getter* for the attribute")
Note: See TracBrowser for help on using the repository browser.