/**
 * DRIVER project
 * 2006-2008(C) ICM UW
**/
package eu.dnetlib.common.profile;

/**
 * Profile model representation.
 * @author mhorst
 *
 */
public class Profile {

	ProfileHeader header;
	Body body;
	
	/**
	 * Default constructor.
	 */
	public Profile() {
		
	}
	
	public Profile(ProfileHeader header, Body body) {
		this.header = header;
		this.body = body;
	}
	
	public ProfileHeader getHeader() {
		return header;
	}
	public void setHeader(ProfileHeader header) {
		this.header = header;
	}
	public Body getBody() {
		return body;
	}
	public void setBody(Body body) {
		this.body = body;
	}
}
