package com.infinite.focus.server.auth;

import com.infinite.focus.server.standard.Standard;

/*
 * 
 * Author: Saboor Salaam
 * 
 */

//Wrapper to contain all account data for either a company or a general user
public class AccountDataWrapper {
	
	
	Instructor i;
	Student s;
	Standard std;
	School school;
	District district;
	
	int type = 1;
	
	
	public AccountDataWrapper() {
		super();
	}
	

	public Student getS() {
		return s;
	}




	public void setS(Student s) {
		this.s = s;
	}

	public Standard getStd() {
		return std;
	}




	public void setStd(Standard std) {
		this.std = std;
	}



	public Instructor getI() {
		return i;
	}

	public void setI(Instructor i) {
		this.i = i;
	}

	public int getType() {
		return type;
	}


	public void setType(int type) {
		this.type = type;
	}


	public School getSchool() {
		return school;
	}


	public void setSchool(School school) {
		this.school = school;
	}


	public District getDistrict() {
		return district;
	}


	public void setDistrict(District district) {
		this.district = district;
	}
	
	
}