Skip to content
This repository was archived by the owner on Jan 8, 2019. It is now read-only.

Commit f8353c6

Browse files
committed
Generating getters/setters for now as play is unable to do it.
1 parent c18f7c7 commit f8353c6

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

app/models/LoginRequest.java

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,35 @@ public class LoginRequest {
2727
@Required public String password;
2828
@Required public boolean noStartpage;
2929

30+
public String getDestination() {
31+
return destination;
32+
}
33+
34+
public void setDestination(String destination) {
35+
this.destination = destination;
36+
}
37+
38+
public String getUsername() {
39+
return username;
40+
}
41+
42+
public void setUsername(String username) {
43+
this.username = username;
44+
}
45+
46+
public String getPassword() {
47+
return password;
48+
}
49+
50+
public void setPassword(String password) {
51+
this.password = password;
52+
}
53+
54+
public boolean isNoStartpage() {
55+
return noStartpage;
56+
}
57+
58+
public void setNoStartpage(boolean noStartpage) {
59+
this.noStartpage = noStartpage;
60+
}
3061
}

0 commit comments

Comments
 (0)