AuthorizationRequest.java
/**
* TFG 75.678 - TFG Desarrollo web 2020 e-Learning for Schools
* Copyright (C) 2020 Eduardo Rodriguez Carro
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.uoc.tfg.sel.web.model;
/**
* The Class AuthorizationRequest.
* @author Eduardo Rodriguez Carro
*/
public class AuthorizationRequest {
/** The content. */
private String content;
/** The student id. */
private Integer studentId;
/** The class id. */
private Integer classId;
/** The course id. */
private Integer courseId;
/**
* Gets the content.
*
* @return the content
*/
public String getContent() {
return content;
}
/**
* Sets the content.
*
* @param content the new content
*/
public void setContent(String content) {
this.content = content;
}
/**
* Gets the student id.
*
* @return the student id
*/
public Integer getStudentId() {
return studentId;
}
/**
* Sets the student id.
*
* @param studentId the new student id
*/
public void setStudentId(Integer studentId) {
this.studentId = studentId;
}
/**
* Gets the class id.
*
* @return the class id
*/
public Integer getClassId() {
return classId;
}
/**
* Sets the class id.
*
* @param classId the new class id
*/
public void setClassId(Integer classId) {
this.classId = classId;
}
/**
* Gets the course id.
*
* @return the course id
*/
public Integer getCourseId() {
return courseId;
}
/**
* Sets the course id.
*
* @param courseId the new course id
*/
public void setCourseId(Integer courseId) {
this.courseId = courseId;
}
}