Skip to content
Snippets Groups Projects
Commit c37adc1b authored by Daniel Gerhardt's avatar Daniel Gerhardt
Browse files

Mark classes used by serializable classes also serializable

parent f2d5a6d4
No related merge requests found
Pipeline #119 passed with stages
......@@ -21,13 +21,15 @@ import com.fasterxml.jackson.annotation.JsonIgnore;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
/**
* Both a regular (single choice, evaluation, etc.) as well as a freetext answer.
*
* This class has additional fields to transport generated answer statistics.
*/
@ApiModel(value = "Answer", description = "the answer entity")
public class Answer {
public class Answer implements Serializable {
private String _id;
private String _rev;
......
......@@ -21,11 +21,13 @@ import com.fasterxml.jackson.annotation.JsonIgnore;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
/**
* A question the user is asking the teacher. Also known as feedback or audience question.
*/
@ApiModel(value = "audiencequestion", description = "the interposed question entity")
public class InterposedQuestion {
public class InterposedQuestion implements Serializable {
private String _id;
private String _rev;
......
......@@ -19,11 +19,14 @@ package de.thm.arsnova.entities;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
/**
* A session's settings regarding the calculation of the learning progress.
*/
@ApiModel(value = "learning progress options", description = "the learning progress entity")
public class LearningProgressOptions {
public class LearningProgressOptions implements Serializable {
private String type = "questions";
......
......@@ -20,11 +20,13 @@ package de.thm.arsnova.entities;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
/**
* This class represents an answer option of a question.
*/
@ApiModel(value = "session/answer", description = "the possible answer entity")
public class PossibleAnswer {
public class PossibleAnswer implements Serializable {
private String id;
private String text;
......
......@@ -16,14 +16,17 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package de.thm.arsnova.entities;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
/**
* Contains fields that describe which specific feature is activated for a session.
*/
@ApiModel(value = "session feature", description = "the session feature entity")
public class SessionFeature {
public class SessionFeature implements Serializable {
private boolean custom = true;
private boolean clicker = false;
......
......@@ -23,6 +23,7 @@ import de.thm.arsnova.entities.User;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.util.Date;
/**
......@@ -30,7 +31,7 @@ import java.util.Date;
*/
@JsonInclude(JsonInclude.Include.NON_DEFAULT)
@ApiModel(value = "session/answer", description = "the Answer API")
public class Answer {
public class Answer implements Serializable {
private String answerSubject;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment