initial commit

This commit is contained in:
2015-03-26 07:26:19 +01:00
commit 9b37788528
10 changed files with 701 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
package model;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.xml.bind.annotation.XmlRootElement;
/**
* Created by walter on 22/03/15.
*/
@Entity
@XmlRootElement
public class PkgName
{
@Id
public String id;
public PkgName(){};
public PkgName(String name)
{
id = name;
}
}