CSE462 Document Management System Spring 2000
Project 3
Objectives:
Problem Statement:
A document is the name given to the collection of data your application interacts with. Usually we think of "document" as something textual in nature, it need not be. It can be a graphic drawing for a "paint" application. It is a table for a spreadsheet application and so on. In Computer Science department and in many other agencies in order to create a paperless workflow we are increasingly witnessing the use of online submission of documents. In most cases the documents are stored as many flat files in a regular directory structure. Instead of this, we desire to create a database for the documents with all the details associated with the document. The users of this system will be the person(s) who submits the documents and the person(s) who reviews the document and registers his/her response. As a case study we will use project submissions similar to CSE462. Person who submits the document will be the student and the reviewer will be the instructor(s) who will assign a grade. The student can then retrieve grade information.
Problem Description:
We can approach this problem from the user point of view or from the data point of view. We will use the latter approach since our emphasis in this course is on database design. The database to suit the requirements above has to be designed and deployed by the administrator (SQL Client). Administrator will add (INSERT) the data pertaining to the user "instructor". Such details will include name, user name and password. The user "instructor" will interact with the database through an application (InstructorApp). Of course, the instructors have username and password to authenticate them. Instructors will enter the details of registered students’ identification number, name, username and password, and the project numbers and their respective due dates. All the above activities typically take place only once at the beginning of the semester assuming that there will be no changes to the students enrolled in the class, to the project due date and to the information about the instructors. Instructors are also the graders or reviewers of the project. After the due date the projects will be accessed by them, graded and a grade entered into the database.
Students will interact with the database through an application (StudentApp). Students will go through username and password authorization process. Students will submit their projects, which are assumed to be simple text. If a submission is on or before the due date it will be accepted and a confirmation number will be returned to the student. If it is beyond due date the submission will be rejected. Students may use the confirmation number to request grades. They may also look at the grade by providing other details such as project number. (Which is more efficient?)
After using the system all the users should gracefully exit the system by logging out. This is one of the options offered by the user interface.
Implementation Details:
Instructor:
-- Logs in. a) Login accepted. b) Login rejected.
-- Enters details about student.
-- Enters details about project number and due date.
-- Reviews document.
-- Enters grade for a reviewed document/project.
-- Log out.
Student:
-- Logs in. a) Login accepted. b) Login rejected.
-- Submits project. a) Project submission on or before due date, accepted. b) Otherwise project submission rejected.
-- Check if grade is ready. If it is, obtain grade for a project.
-- Log out.
Material to be submitted:
Due Date: 4/28/2000 before midnight. Submit online. Hand in a hardcopy in class.