springpython.security.userdetails
index
/home/gturnquist/spring-python-1.1.x/src/springpython/security/userdetails/__init__.py

Copyright 2006-2008 SpringSource (http://springsource.com), All Rights Reserved
 
Licensed 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
 
    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.

 
Package Contents
       
dao

 
Classes
       
__builtin__.object
User
UserDetailsService
InMemoryUserDetailsService

 
class InMemoryUserDetailsService(UserDetailsService)
    
Method resolution order:
InMemoryUserDetailsService
UserDetailsService
__builtin__.object

Methods defined here:
__init__(self, user_dict=None)
load_user(self, username)

Data descriptors inherited from UserDetailsService:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class User(__builtin__.object)
    Models core user information retieved by an UserDetailsService.
 
  Methods defined here:
__init__(self, username, password, enabled, accountNonExpired=True, accountNonLocked=True, credentialsNonExpired=True, authorities=None)
__str__(self)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class UserDetailsService(__builtin__.object)
    Defines an interface for implementations that wish to provide data access services to the DaoAuthenticationProvider.
 
The interface requires only one read-only method, which simplifies support of new data access strategies.
 
  Methods defined here:
load_user(self, username)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)