An implementation of IPrincipalInfo used by the principal folder.
A principal info is created with id, login, title, and description:
>>> info = PrincipalInfo('users.foo', 'foo', 'Foo', 'An over-used term.') >>> info PrincipalInfo('users.foo') >>> info.id 'users.foo' >>> info.login 'foo' >>> info.title 'Foo' >>> info.description 'An over-used term.'
There are no attributes in this class.
There are no methods in this class.
There are no known subclasses.