package com.infinite.focus.server.wall;

import java.util.List;

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

import com.infinite.focus.server.auth.Instructor;
import com.infinite.focus.server.auth.Student;


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

public class WallPostProfileWrapper {
	
	
	//Wall post should work for students and teachers 
	//Profile information needs to be returned as well!!
	
	private WallPostWrapper wallPost;
	private Instructor instructor;
	private Student student;
		
	public WallPostProfileWrapper() {
		super();
	}

	public WallPostWrapper getWallPost() {
		return wallPost;
	}

	public void setWallPost(WallPostWrapper wallPost) {
		this.wallPost = wallPost;
	}

	public Instructor getInstructor() {
		return instructor;
	}

	public void setInstructor(Instructor instructor) {
		this.instructor = instructor;
	}

	public Student getStudent() {
		return student;
	}

	public void setStudent(Student student) {
		this.student = student;
	}

	
		
}
