-
Notifications
You must be signed in to change notification settings - Fork 1
POST Forms CoopEvaluation
Pierre Robert-Michon edited this page Mar 5, 2019
·
2 revisions
Create a new Coop Evaluation form
POST
/form/coopEvaluation/{formId}/{submissionDate}/{workExperience}/{employerEvaluation}/{softwareTechnologies}/{usefulCourses}/{coopId}
-
int formId
- unique ID of the form -
String submissionDateStr
- date of submission of the form -
String workExperience
- description of work experience -
int employerEvaluation
- Satisfaction score for employer -
String softwareTechnologies
- Software Technologies that were useful during coop, tech names separated by spaces -
String usefulCourses
- Courses that were useful during coop, course codes separated by spaces -
int coopId
- unique ID of the coop to which the form is associated
A JSON array of message header maps, containing the following fields:
-
int formId
- unique ID of the form -
String submissionDateStr
- date of submission of the form -
String workExperience
- description of work experience -
int employerEvaluation
- Satisfaction score for employer -
String softwareTechnologies
- Software Technologies that were useful during coop, tech names separated by spaces -
String usefulCourses
- Courses that were useful during coop, course codes separated by spaces -
int coopId
- unique ID of the coop to which the form is associated
Request: POST
http://localhost:8080/form/coopEvaluation/12/2018-09-10/Helped\ to\ develop\ Junit\ 5\ tests/9/Java\ Spring\ Junit5/ECSE\ 321/43
Success Response:
-
Code: 200
- Content:
{
"formId": 12,
"submissionDate": "2018-09-10",
"workExperience": "Helped to develop Junit 5 tests",
"employerEvaluation": 9,
"softwareTechnologies": "Java, Spring, Junit5",
"usefulCourses": "ECSE 321",
"coop": 43
}
1.1 Requirements Model
1.2 Domain Model
1.3 Deliverable 1 Report
2.1 RESTful Service Endpoints
2.2 Software Quality Assurance
2.3 Deliverable 2 Report
3.1 Architecture Model
3.2 Deliverable 3 Report
4.0 Before Anything
4.1 User Documentation
4.2 User Experience
4.3 Software Testing Update
4.4 Android App Instructions
4.5 Deliverable 4 Report