Skip to content

Commit

Permalink
NOJIRA
Browse files Browse the repository at this point in the history
added setter
  • Loading branch information
battags committed Feb 3, 2008
1 parent f22da20 commit f8bc123
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/**
* Abstract class for handling the enabling and disabling of Single Sign Out features.
*
* @author scottbattaglia
* @author Scott Battaglia
* @version $Revision: 1.1 $ $Date: 2005/08/19 18:27:17 $
* @since 3.1.2
*
Expand All @@ -31,4 +31,8 @@ public void setHttpClient(final HttpClient httpClient) {
protected HttpClient getHttpClientIfSingleSignOutEnabled() {
return this.disableSingleSignOut ? this.httpClient : null;
}

public void setDisableSingleSignOut(final boolean disableSingleSignOut) {
this.disableSingleSignOut = disableSingleSignOut;
}
}

0 comments on commit f8bc123

Please sign in to comment.