Skip to content
This repository has been archived by the owner on Oct 24, 2020. It is now read-only.

Commit

Permalink
make sure things are pushed
Browse files Browse the repository at this point in the history
  • Loading branch information
SavvasMisaghMoayyed committed Jul 25, 2018
1 parent 398be6a commit 07e2cae
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,13 @@

import javax.servlet.http.HttpServletRequest;


/**
* Generates a querystring parameter containing the authn_method parameter.
*
* @author [email protected]
* @author Misagh Moayyed
*/
public abstract class CasAuthnMethodParameterBuilder implements IParameterBuilder, ApplicationContextAware {
private Logger logger = LoggerFactory.getLogger(CasAuthnMethodParameterBuilder.class);
private final Logger logger = LoggerFactory.getLogger(CasAuthnMethodParameterBuilder.class);
protected ApplicationContext applicationContext;

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
package net.unicon.idp.authn.provider.extra;

/**
* This is {@link CasMultifactorRefedsToDuoSecurityAuthnMethodParameterBuilder}.
*
* @author Misagh Moayyed
* @since 5.3.0
*/
public class CasMultifactorRefedsToDuoSecurityAuthnMethodParameterBuilder extends CasAuthnMethodParameterBuilder {
@Override
protected String getCasAuthenticationMethodFor(final String authnMethod) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
package net.unicon.idp.authn.provider.extra;

/**
* This is {@link CasMultifactorRefedsToGoogleAuthenticatorAuthnMethodParameterBuilder}.
*
* @author Misagh Moayyed
* @since 5.3.0
*/
public class CasMultifactorRefedsToGoogleAuthenticatorAuthnMethodParameterBuilder extends CasAuthnMethodParameterBuilder {
@Override
protected String getCasAuthenticationMethodFor(final String authnMethod) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* @author [email protected]
*/
public class EntityIdParameterBuilder implements IParameterBuilder {
private Logger logger = LoggerFactory.getLogger(EntityIdParameterBuilder.class);
private final Logger logger = LoggerFactory.getLogger(EntityIdParameterBuilder.class);

@Override
public String getParameterString(final HttpServletRequest request) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,6 @@
import java.util.ArrayList;
import java.util.List;

/**
* This is {@link CasDuoSecurityRefedsAuthnMethodTranslator}.
*
* @author Misagh Moayyed
* @since 5.3.0
*/
public class CasDuoSecurityRefedsAuthnMethodTranslator implements CasToShibTranslator, EnvironmentAware {
private final Logger logger = LoggerFactory.getLogger(CasDuoSecurityRefedsAuthnMethodTranslator.class);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
*/
@WebServlet(name = "ShibcasAuthServlet", urlPatterns = {"/Authn/ExtCas/*"})
public class ShibcasAuthServlet extends HttpServlet {
private Logger logger = LoggerFactory.getLogger(ShibcasAuthServlet.class);
private final Logger logger = LoggerFactory.getLogger(ShibcasAuthServlet.class);
private static final long serialVersionUID = 1L;
private static final String artifactParameterName = "ticket";
private static final String serviceParameterName = "service";
Expand Down

0 comments on commit 07e2cae

Please sign in to comment.