Changeset 4108 for waeup/branches/ulif-rewrite/src
- Timestamp:
- 6 May 2009, 06:49:40 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
waeup/branches/ulif-rewrite/src/waeup/interfaces.py
r4088 r4108 104 104 """ 105 105 106 class IUserAccount(IWAeUPObject): 107 """A user account. 108 """ 109 name = schema.TextLine( 110 title = u'User ID', 111 description = u'Loginname', 112 required = True,) 113 title = schema.TextLine( 114 title = u'Username', 115 description = u'Real name', 116 required = False,) 117 description = schema.TextLine( 118 title = u'User description', 119 required = False,) 120 description = schema.Password( 121 title = u'Password', 122 required = True,) 123 124 106 125 class IUserContainer(IWAeUPObject): 107 126 """A container for users (principals).
Note: See TracChangeset for help on using the changeset viewer.