Skip to content

Commit

Permalink
JM: implementing two get methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmoffitt authored Jun 17, 2016
1 parent 302455a commit 551a830
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,15 @@ public void setupConnection(AbstractHttpClient client) {
new UsernamePasswordCredentials(username, password)
);
}

public String getUsername() {
return this.username;
}

public String getPassword() {
return this.password;
}

@Override
public void signRequest(HttpUriRequest request, String postParams) {}
}
}

0 comments on commit 551a830

Please sign in to comment.