source: main/waeup.kofa/trunk/src/waeup/kofa/applicants/__init__.py @ 11790

Last change on this file since 11790 was 7811, checked in by uli, 13 years ago

Rename all non-locales stuff from sirp to kofa.

  • Property svn:keywords set to Id
File size: 656 bytes
Line 
1"""This package contains everything regarding university applicants.
2"""
3# Make this a package.
4from waeup.kofa.applicants.applicant import (
5    Applicant, ApplicantFactory, ApplicantImageStoreHandler,
6    ApplicantImageNameChooser,
7    )
8from waeup.kofa.applicants.container import ApplicantsContainer
9from waeup.kofa.applicants.root import ApplicantsRoot
10from waeup.kofa.applicants.dynamicroles import (
11    ApplicantPrincipalRoleManager,)
12
13__all__ = [
14    'Applicant',
15    'ApplicantFactory',
16    'ApplicantImageNameChooser',
17    'ApplicantImageStoreHandler',
18    'ApplicantPrincipalRoleManager',
19    'ApplicantsContainer',
20    'ApplicantsRoot',
21    ]
Note: See TracBrowser for help on using the repository browser.