Skip to content

Commit

Permalink
add admin address to adminShow endpoint (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
gibarsin authored Feb 4, 2017
1 parent d2a149a commit 3d1fdd9
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ public class AdminShowDTO {
private int docket;
private String email;
private String password;
private AddressDTO address;

public AdminShowDTO() {
}
Expand Down Expand Up @@ -80,4 +81,12 @@ public String getPassword() {
public void setPassword(String password) {
this.password = password;
}

public AddressDTO getAddress() {
return address;
}

public void setAddress(final AddressDTO address) {
this.address = address;
}
}

0 comments on commit 3d1fdd9

Please sign in to comment.