source: main/waeup.sirp/trunk/src/waeup/sirp/students/__init__.py @ 7316

Last change on this file since 7316 was 7159, checked in by Henrik Bettermann, 13 years ago

Rename securitypolicy module to dynamicroles.

  • Property svn:keywords set to Id
File size: 689 bytes
Line 
1"""This package contains everything regarding students.
2"""
3# Make this a package.
4from waeup.sirp.students.student import (
5    Student, StudentFactory
6    )
7from waeup.sirp.students.container import StudentsContainer
8from waeup.sirp.students.studycourse import StudentStudyCourse
9from waeup.sirp.students.payments import StudentPaymentsContainer
10from waeup.sirp.students.accommodation import StudentAccommodation
11from waeup.sirp.students.dynamicroles import StudentPrincipalRoleManager
12
13
14__all__ = [
15    'Student',
16    'StudentFactory',
17    'StudentsContainer',
18    'StudentStudyCourse',
19    'StudentPaymentsContainer',
20    'StudentAccommodation'
21    'StudentPrincipalRoleManager',
22    ]
Note: See TracBrowser for help on using the repository browser.