| |
---|
| | @Produces(MediaType.APPLICATION_JSON) |
---|
| | public Account getAccount(@PathParam("uniqueID") String uniqueID) { |
---|
| | return Accounts.getInstance().getAccountByuniqueID(uniqueID); |
---|
| | } |
---|
| | |
---|
| | @DELETE |
---|
| | @Produces(MediaType.APPLICATION_JSON) |
---|
| | public Account deleteAccount(@FormParam("token") String token) { |
---|
| | return Accounts.getInstance().deleteAccount(token); |
---|
| | } |
---|
| | |
---|
| | |
---|
| | } |
---|
| | |
---|
| | |