Automatic generation produced by ISE Eiffel
indexing
description: "Application constants unique repository. Useful for configuring the application"
author: "Marco Piccioni"
date: "$05.02.2008$"
revision: "$0.8.1$"
deferred class
APPLICATION_CONSTANTS
feature -- event status
proposed: INTEGER_32 is unique
-- Was declared in APPLICATION_CONSTANTS with other unique constants Accepted, Rejected and Deleted.
accepted: INTEGER_32 is unique
-- Was declared in APPLICATION_CONSTANTS with other unique constants Proposed, Rejected and Deleted.
rejected: INTEGER_32 is unique
-- Was declared in APPLICATION_CONSTANTS with other unique constants Proposed, Accepted and Deleted.
deleted: INTEGER_32 is unique
-- Was declared in APPLICATION_CONSTANTS with other unique constants Proposed, Accepted and Rejected.
feature -- user status
user_active: INTEGER_32 is unique
-- Was declared in APPLICATION_CONSTANTS with other unique constants User_suspended.
user_suspended: INTEGER_32 is unique
-- Was declared in APPLICATION_CONSTANTS with other unique constants User_active.
feature -- user roles
role_guest: INTEGER_32 is 0
role_normal_user: INTEGER_32 is 1
role_administrator: INTEGER_32 is 2
feature -- precreated admin account
admin_email: STRING_8 is "admin@informatics_events.org"
admin_first_name: STRING_8 is "admin"
admin_last_name: STRING_8 is ""
admin_password: STRING_8 is "dummy"
admin_organization: STRING_8 is "Informatics Europe / Computer Science Department, ETH Zürich"
admin_telephone: STRING_8 is "-"
end -- class APPLICATION_CONSTANTS
-- Generated by ISE Eiffel --
For more details: www.eiffel.com