Ignore:
Timestamp:
01/10/22 12:04:49 (2 years ago)
Author:
Oliver Schonefeld
Message:
  • cleanup
File:
1 edited

Legend:

Unmodified
Added
Removed
  • FCSSimpleEndpoint/trunk/src/main/java/eu/clarin/sru/server/fcs/SimpleEndpointSearchEngineBase.java

    r7273 r7279  
    140140        if (enableAuthentication != null) {
    141141            if (parseBoolean(enableAuthentication)) {
    142                 logger.debug("enabling authentication");               
     142                logger.debug("enabling authentication");
    143143                AuthenticationProvider.Builder builder =
    144144                        AuthenticationProvider.Builder.create();
    145                
     145
    146146                String audience = params.get(FCS_AUTHENTICATION_AUDIENCE_PARAM);
    147147                if (audience != null) {
     
    157157                    }
    158158                }
    159                
     159
    160160                boolean ignoreIssuedAt = parseBoolean(
    161161                        params.get(FCS_AUTHENTICATION_IGNORE_ISSUEDAT_PARAM));
     
    177177                    builder.withExpiresAt(expiresAtLeeway);
    178178                }
    179                
     179
    180180                long notBeforeLeeway = parseLong(
    181181                        params.get(FCS_AUTHENTICATION_ACCEPT_NOTBEFORE_PARAM), -1);
     
    368368        return defaultValue;
    369369    }
    370    
    371    
     370
     371
    372372    private void writeEndpointDescription(XMLStreamWriter writer)
    373373            throws XMLStreamException {
Note: See TracChangeset for help on using the changeset viewer.