Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
gschueler committed Sep 9, 2016
1 parent b2cfaf6 commit 06f95e2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/main/java/org/rundeck/client/util/FormAuthInterceptor.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,13 @@
import java.io.IOException;

/**
* Created by greg on 5/25/16.
* Handle Form authentication flow to Rundeck
*/
public class FormAuthInterceptor implements Interceptor {
;
boolean authorized;
String username;
String password;
String baseUrl;
private boolean authorized;
private String username;
private String password;
private String baseUrl;
private String j_security_url;
private String usernameField;
private String passwordField;
Expand All @@ -24,7 +23,8 @@ public FormAuthInterceptor(
final String baseUrl,
final String securityUrl,
final String usernameField,
final String passwordField, final String loginErrorPath
final String passwordField,
final String loginErrorPath
)
{
this.username = username;
Expand Down

0 comments on commit 06f95e2

Please sign in to comment.