package com.infinite.focus.server.tests;

import java.util.Date;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;

import org.hibernate.annotations.CreationTimestamp;
import org.hibernate.annotations.GenericGenerator;


/**
 * 
 * @author Saboor
 * 
 *
 */

@Entity
public class CorrectAnswer {
	
	//PK
 	@Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private long correct_answer_id;
 	
 	private long question_id;
 	 	 	 	 	
	private String correct_answer_text;
			
	public CorrectAnswer() {
		super();
	}

	public long getCorrect_answer_id() {
		return correct_answer_id;
	}

	public void setCorrect_answer_id(long correct_answer_id) {
		this.correct_answer_id = correct_answer_id;
	}

	public String getCorrect_answer_text() {
		return correct_answer_text;
	}

	public void setCorrect_answer_text(String correct_answer_text) {
		this.correct_answer_text = correct_answer_text;
	}

	public long getQuestion_id() {
		return question_id;
	}

	public void setQuestion_id(long question_id) {
		this.question_id = question_id;
	}
	

}
