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

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

PPP fixes

  • Property svn:eol-style set to native
File size: 570 bytes
RevLine 
[1920]1from zope.interface import Interface, Attribute
[782]2
[3145]3
[782]4class ICanonicalPath(Interface):
5    """canonical_path provider interface
6    """
7
[3599]8    canonical_path = Attribute(
9        "canonical_path",
[1920]10        "canonical_path - for the object. Adapter must implement "
11        "*setter* and *getter* for the attribute")
12
[3145]13
[1927]14class ICanonicalLink(Interface):
15    """canonical_link provider interface
16    """
17
[3599]18    canonical_link = Attribute(
19        "canonical_link",
[1927]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.