##
## interfaces.py
from zope.interface import Interface
from zope import schema

class IStudent(Interface):
    """Representation of a student.
    """
    name = schema.TextLine(
        title = u'Name of student',
        default = u'Nobody',
        required = True,
        )

