Uses of Interface
org.apache.shale.usecases.model.User

Packages that use User
org.apache.shale.usecases.logic This package contains business logic methods that manipulate model data objects in the org.apache.shale.usecases.model package. 
org.apache.shale.usecases.model This package contains interfaces that represent the model data objects required by the Use Cases example application, plus a Data Access Object (DAO) that may be utilized by business logic to manipulate these model data objects. 
org.apache.shale.usecases.model.minimal This package contains a minimal implementation of the model data object APIs defined in the org.apache.shale.usecases.model package. 
 

Uses of User in org.apache.shale.usecases.logic
 

Methods in org.apache.shale.usecases.logic that return User
 User LogonLogic.authenticate(String username, String password)
          Validate the specified logon credientials.
 User LogonLogic.createUser()
          Create and return a User object that may be populated and then passed to insertUser() for persistence.
 User LogonLogic.findUser(int id)
          Pass-through method to retrieve a User by id.
 User LogonLogic.findUser(String username)
          Pass-through method to retrieve a User by username.
 

Methods in org.apache.shale.usecases.logic with parameters of type User
 void LogonLogic.insertUser(User user)
          Insert a newly created User into persistent storage.
 void LogonLogic.updateUser(User user)
          Update an existing User into persistent storage.
 

Uses of User in org.apache.shale.usecases.model
 

Methods in org.apache.shale.usecases.model that return User
 User UsersDAO.createUser()
          Create and return a User object that may be populated and then passed to insertUser() for persistence.
 User UsersDAO.findUser(int id)
          Return the User for the corresponding user id, if any.
 User UsersDAO.findUser(String username)
          Return the User for the corresponding username, if any.
 

Methods in org.apache.shale.usecases.model with parameters of type User
 void UsersDAO.insertUser(User user)
          Insert a newly created User into persistent storage.
 void UsersDAO.updateUser(User user)
          Update an existing User into persistent storage.
 

Uses of User in org.apache.shale.usecases.model.minimal
 

Classes in org.apache.shale.usecases.model.minimal that implement User
 class MinimalUser
          Minimal implementation of User with no persistence support.
 

Methods in org.apache.shale.usecases.model.minimal that return User
 User MinimalUsersDAO.createUser()
           
 User MinimalUsersDAO.findUser(int id)
           
 User MinimalUsersDAO.findUser(String username)
           
 

Methods in org.apache.shale.usecases.model.minimal with parameters of type User
 void MinimalUsersDAO.insertUser(User user)
           
 void MinimalUsersDAO.updateUser(User user)
           
 



Copyright © 2004-2007 Apache Software Foundation. All Rights Reserved.