Last change
on this file since 7137 was
7137,
checked in by Henrik Bettermann, 13 years ago
|
Set value Id for property svn:keywords in all Python files.
|
-
Property svn:keywords set to
Id
|
File size:
835 bytes
|
Line | |
---|
1 | """This package contains everything regarding university applicants. |
---|
2 | """ |
---|
3 | # Make this a package. |
---|
4 | from waeup.sirp.applicants.applicant import ( |
---|
5 | ResultEntry, Applicant, ApplicantFactory, ApplicantImageStoreHandler, |
---|
6 | get_regno_or_ac, ApplicantImageNameChooser, |
---|
7 | ) |
---|
8 | from waeup.sirp.applicants.container import ApplicantsContainer |
---|
9 | from waeup.sirp.applicants.root import ( |
---|
10 | ApplicantsRoot, get_applicant_data, application_exists, |
---|
11 | ) |
---|
12 | from waeup.sirp.applicants.securitypolicy import ( |
---|
13 | ApplicantPrincipalRoleManager,) |
---|
14 | |
---|
15 | __all__ = [ |
---|
16 | 'ResultEntry', |
---|
17 | 'Applicant', |
---|
18 | 'ApplicantFactory', |
---|
19 | 'ApplicantImageNameChooser', |
---|
20 | 'ApplicantImageStoreHandler', |
---|
21 | 'ApplicantPrincipalRoleManager', |
---|
22 | 'ApplicantsContainer', |
---|
23 | 'ApplicantsRoot', |
---|
24 | 'application_exists', |
---|
25 | 'get_applicant_data', |
---|
26 | 'get_regno_or_ac', |
---|
27 | ] |
---|
Note: See
TracBrowser for help on using the repository browser.