Help.java 1.32 KB
/*
 * Copyright Codecrew Ry
 * 
 * All rights reserved.
 * 
 * This license applies to any software containing a notice placed by the 
 * copyright holder. Such software is herein referred to as the Software. 
 * This license covers modification, distribution and use of the Software. 
 * 
 * Any distribution and use in source and binary forms, with or without 
 * modification is not permitted without explicit written permission from the 
 * copyright owner. 
 * 
 * A non-exclusive royalty-free right is granted to the copyright owner of the 
 * Software to use, modify and distribute all modifications to the Software in 
 * future versions of the Software. 
 * 
 */
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package fi.codecrew.moya.model;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;

/**
 * Group for lectures, so you can set limits how many of these the user can
 * choose
 */
@Entity
@Table(name = "helps")
public class Help extends GenericEntity {

	private static final long serialVersionUID = 1L;

	@Column(name = "path")
	private String path;

	public Help(String path) {
		this.path = path;
	}

	public Help() {

	}


	public String getPath() {
		return path;
	}

	public void setPath(String path) {
		this.path = path;
	}
}