View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *     http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.shiro.cas;
20  
21  import org.apache.shiro.authc.AuthenticationToken;
22  import org.apache.shiro.subject.Subject;
23  import org.apache.shiro.subject.SubjectContext;
24  import org.apache.shiro.web.mgt.DefaultWebSubjectFactory;
25  
26  /**
27   * {@link org.apache.shiro.mgt.SubjectFactory Subject} implementation to be used in CAS-enabled applications.
28   *
29   * @since 1.2
30   * @see <a href="https://github.com/bujiio/buji-pac4j">buji-pac4j</a>
31   * @deprecated replaced with Shiro integration in <a href="https://github.com/bujiio/buji-pac4j">buji-pac4j</a>.
32   */
33  @Deprecated
34  public class CasSubjectFactory extends DefaultWebSubjectFactory {
35  
36      @Override
37      public Subject createSubject(SubjectContext context) {
38  
39          //the authenticated flag is only set by the SecurityManager after a successful authentication attempt.
40          boolean authenticated = context.isAuthenticated();
41  
42          //although the SecurityManager 'sees' the submission as a successful authentication, in reality, the
43          //login might have been just a CAS rememberMe login.  If so, set the authenticated flag appropriately:
44          if (authenticated) {
45  
46              AuthenticationToken token = context.getAuthenticationToken();
47  
48              if (token != null && token instanceof CasToken) {
49                  CasToken./../../org/apache/shiro/cas/CasToken.html#CasToken">CasToken casToken = (CasToken) token;
50                  // set the authenticated flag of the context to true only if the CAS subject is not in a remember me mode
51                  if (casToken.isRememberMe()) {
52                      context.setAuthenticated(false);
53                  }
54              }
55          }
56  
57          return super.createSubject(context);
58      }
59  }