FIX::edited correct names in fxml files

changed the controller names to use the greenify packages

ADD::added button to add a vegetarian meal

only the button
This commit is contained in:
Sem van der Hoeven
2019-03-14 19:23:30 +01:00
parent 0be9322f66
commit e9bee87a38
6 changed files with 28 additions and 13 deletions

View File

@@ -8,17 +8,17 @@ import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
//@AllArgsConstructor
@Entity
@Data
//@AllArgsConstructor
@NoArgsConstructor
public class User {
@Id
private @Id
@GeneratedValue(strategy = GenerationType.AUTO)
Long id;
String name;
String password;
private String name;
private String password;
/**
* makes a user object.