/*
 * Created on Mar 21, 2005
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package com.dragonsoft.tryapp.ejb.entity.interfaces;

/**
 * @author Greg
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public class StudentPK {

	private String username;
	private String courseID;
	
	public StudentPK(String user,String crs){
		this.username=user;
		this.courseID = crs;
	}
	
	public String getCourseID(){
		return courseID;
	}
	
	public String getUsername(){
		return username;
	}
	
	public void setUsername(String name){
		this.username = name;
	}
	
	public void setCourseID(String crs){
		this.courseID = crs;
	}
}
