@Entity
public class StudentCourseInfo {
	
	private String student_name;
	
	@EmbeddedId
	private CompositKeyEmbeddable compositKeyEmbeddable;
	
	private String duration;

//getters and setters

}