Merge pull request #33 from battags/master

NOJIRA fix minor missing final tags and javadoc.
This commit is contained in:
Scott 2013-01-06 20:58:03 -08:00
commit e552252b68
1 changed files with 4 additions and 4 deletions

View File

@ -75,20 +75,20 @@ public class Cas20ProxyTicketValidator extends Cas20ServiceTicketValidator {
this.allowedProxyChains = allowedProxyChains;
}
protected boolean isAcceptAnyProxy() {
protected final boolean isAcceptAnyProxy() {
return this.acceptAnyProxy;
}
protected boolean isAllowEmptyProxyChain() {
protected final boolean isAllowEmptyProxyChain() {
return this.allowEmptyProxyChain;
}
/**
* Set to determine whether empty proxy chains are allowed.
* @see #customParseResponse(String, Assertion)
* @param allowEmptyProxyChain
* @param allowEmptyProxyChain whether to allow empty proxy chains or not. True if so, false otherwise.
*/
public void setAllowEmptyProxyChain(final boolean allowEmptyProxyChain) {
public final void setAllowEmptyProxyChain(final boolean allowEmptyProxyChain) {
this.allowEmptyProxyChain = allowEmptyProxyChain;
}
}