Skip to content
Snippets Groups Projects
spnego-authn-config.xml 4.13 KiB
Newer Older
<?xml version="1.0" encoding="UTF-8"?>
<!--

    Licensed to Apereo under one or more contributor license
    agreements. See the NOTICE file distributed with this work
    for additional information regarding copyright ownership.
    Apereo licenses this file to you under the Apache License,
    Version 2.0 (the "License"); you may not use this file
    except in compliance with the License.  You may obtain a
    copy of the License at the following location:

      http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing,
    software distributed under the License is distributed on an
    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.

-->

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:util="http://www.springframework.org/schema/util"
       xmlns:p="http://www.springframework.org/schema/p"
       xmlns:c="http://www.springframework.org/schema/c"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
                           http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
                           http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd
                           http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <bean id="negociateSpnego" class="org.jasig.cas.support.spnego.web.flow.SpnegoNegociateCredentialsAction"
            p:mixedModeAuthentication="${cas.spnego.mixed.mode.authn:false}"
            p:ntlm="${cas.spnego.ntlm:false}"
            p:supportedBrowser="#{T(java.util.Arrays).asList('${cas.spnego.supportedBrowsers:MSIE,Trident,Firefox,AppleWebKit}')}"/>

    <bean id="spnego" class="org.jasig.cas.support.spnego.web.flow.SpnegoCredentialsAction"
          p:send401OnAuthenticationFailure="${cas.spnego.send.401.authn.failure:false}"
          p:principalFactory-ref="principalFactory"
          p:centralAuthenticationService-ref="centralAuthenticationService" />

    <bean id="jcifsConfig"
          class="org.jasig.cas.support.spnego.authentication.handler.support.JcifsConfig"
          p:jcifsServicePrincipal="HTTP/cas.example.com@EXAMPLE.COM"
          p:kerberosDebug="${cas.spnego.kerb.debug:false}"
          p:kerberosRealm="${cas.spnego.kerb.realm:EXAMPLE.COM}"
          p:kerberosKdc="${cas.spnego.kerb.kdc:172.10.1.10}"
          p:jcifsDomain="${cas.spnego.jcifs.domain:}"
          p:jcifsDomainController="${cas.spnego.jcifs.domaincontroller:}"
          p:jcifsNetbiosCachePolicy="${cas.spnego.jcifs.netbios.cache.policy:600}"
          p:jcifsNetbiosWins="${cas.spnego.jcifs.netbios.wins:}"
          p:jcifsPassword="${cas.spnego.jcifs.password:}"
          p:jcifsServicePassword="${cas.spnego.jcifs.service.password:}"
          p:jcifsSocketTimeout="${cas.spnego.jcifs.socket.timeout:300000}"
          p:jcifsUsername="${cas.spnego.jcifs.username:}"
          p:kerberosConf="${cas.spnego.kerb.conf:}"
          p:useSubjectCredsOnly="${cas.spnego.use.subject.creds:false}"
          p:loginConf="${cas.spnego.login.conf.file:/path/to/login.conf}" />

    <bean id="spnegoAuthentication" class="jcifs.spnego.Authentication" />

    <bean id="baseSpnegoClientAction"
          class="org.jasig.cas.support.spnego.web.flow.client.BaseSpnegoKnownClientSystemsFilterAction"
          c:ipsToCheckPattern="${cas.spnego.ip.pattern:127.+}"
          c:alternativeRemoteHostAttribute="${cas.spnego.alt.remote.host.attribute:alternateRemoteHeader}" />

    <bean id="hostnameSpnegoClientAction"
          class="org.jasig.cas.support.spnego.web.flow.client.HostNameSpnegoKnownClientSystemsFilterAction"
          c:hostNamePatternString="${cas.spnego.hostname.pattern:something.+}" />
</beans>