Uses of Class
org.apache.agila.services.user.UserID

Packages that use UserID
org.apache.agila.dao   
org.apache.agila.impl Holds platform specific implementations 
org.apache.agila.impl.dao   
org.apache.agila.impl.jdbc   
org.apache.agila.impl.memory   
org.apache.agila.services.notification   
org.apache.agila.services.task   
org.apache.agila.services.user   
org.apache.agila.util   
 

Uses of UserID in org.apache.agila.dao
 

Methods in org.apache.agila.dao that return UserID
 UserID UserDAO.addUser(UserInfo newUser)
           
 

Methods in org.apache.agila.dao with parameters of type UserID
 java.util.List TaskDAO.getTasksForUser(UserID userID, int status)
           
 UserInfo UserDAO.getUserInfo(UserID id)
           
 boolean TaskDAO.lockTaskForUser(TaskID taskID, UserID userID)
           
 void TaskDAO.unlockTaskForUser(TaskID taskID, UserID userID)
           
 

Uses of UserID in org.apache.agila.impl
 

Methods in org.apache.agila.impl that return UserID
 UserID NotificationImpl.getUserID()
           
 

Methods in org.apache.agila.impl with parameters of type UserID
 void NotificationImpl.setUserID(UserID id)
           
 

Constructors in org.apache.agila.impl with parameters of type UserID
NotificationImpl(NotificationID id, UserID userID, java.lang.String msg)
           
 

Uses of UserID in org.apache.agila.impl.dao
 

Methods in org.apache.agila.impl.dao that return UserID
 UserID AgilaDAO.addUser(UserInfo newUser)
           
protected  UserID UserServiceImpl.internalAddUser(UserInfo newUser)
           
 

Methods in org.apache.agila.impl.dao with parameters of type UserID
 java.util.List AgilaDAO.getTasksForUser(UserID userID, int status)
           
 UserInfo AgilaDAO.getUserInfo(UserID id)
           
protected  java.util.List TaskServiceImpl.internalGetTasksByUserID(UserID userID, int status)
           
protected  UserInfo UserServiceImpl.internalGetUserInfo(UserID id)
           
 boolean TaskServiceImpl.lockTaskForUser(TaskID taskID, UserID userID)
           
 boolean AgilaDAO.lockTaskForUser(TaskID taskID, UserID userID)
           
 void TaskServiceImpl.unlockTaskForUser(TaskID taskID, UserID userID)
           
 void AgilaDAO.unlockTaskForUser(TaskID taskID, UserID userID)
           
 

Uses of UserID in org.apache.agila.impl.jdbc
 

Methods in org.apache.agila.impl.jdbc with parameters of type UserID
protected  NotificationImpl NotificationServiceImpl.createNew(UserID userID, java.lang.String msg)
           
protected  java.util.List NotificationServiceImpl.getForUserID(UserID id)
           
 

Uses of UserID in org.apache.agila.impl.memory
 

Methods in org.apache.agila.impl.memory that return UserID
protected  UserID UserServiceImpl.internalAddUser(UserInfo newUser)
           
 

Methods in org.apache.agila.impl.memory with parameters of type UserID
protected  NotificationImpl NotificationServiceImpl.createNew(UserID userID, java.lang.String msg)
           
protected  java.util.List NotificationServiceImpl.getForUserID(UserID id)
           
protected  java.util.List TaskServiceImpl.internalGetTasksByUserID(UserID userID, int type)
           
protected  UserInfo UserServiceImpl.internalGetUserInfo(UserID id)
           
 boolean TaskServiceImpl.lockTaskForUser(TaskID taskID, UserID userID)
           
 void TaskServiceImpl.unlockTaskForUser(TaskID taskID, UserID userID)
           
 

Uses of UserID in org.apache.agila.services.notification
 

Methods in org.apache.agila.services.notification that return UserID
 UserID Notification.getUserID()
           
 

Methods in org.apache.agila.services.notification with parameters of type UserID
protected abstract  NotificationImpl AbstractNotificationService.createNew(UserID userID, java.lang.String msg)
          Creates a new notification
protected abstract  java.util.List AbstractNotificationService.getForUserID(UserID id)
          Query all notifications for a given user.
 java.util.List NotificationService.getNotificationsForUser(UserID id)
           
 java.util.List AbstractNotificationService.getNotificationsForUser(UserID id)
           
 NotificationID NotificationService.notify(UserID userId, java.lang.String message)
          Create a notification for a designated user.
 NotificationID AbstractNotificationService.notify(UserID userID, java.lang.String message)
          Create a notification for a designated user.
 

Uses of UserID in org.apache.agila.services.task
 

Methods in org.apache.agila.services.task that return UserID
 UserID TaskImpl.getUserID()
           
 UserID Task.getUserID()
           
 

Methods in org.apache.agila.services.task with parameters of type UserID
 TaskID TaskService.assignTask(TokenID tokenID, java.lang.String message, UserID userID, java.util.Date due)
          assigns a new task to a given user
 TaskID AbstractTaskService.assignTask(TokenID tokenID, java.lang.String message, UserID userID, java.util.Date due)
          assigns a new task to a given user
 java.util.List TaskService.getTasksForUser(UserID userID, int status)
          returns a list of tasks for a user
 java.util.List AbstractTaskService.getTasksForUser(UserID userID, int status)
          returns a list of tasks for a user
protected abstract  java.util.List AbstractTaskService.internalGetTasksByUserID(UserID userID, int status)
           
 boolean TaskService.lockTaskForUser(TaskID taskID, UserID userID)
          Attempts to lock the given task for the user, to take ownership of the task if noone else has locked it yet.
 void TaskImpl.setUserID(UserID userID)
           
 void Task.setUserID(UserID userID)
           
 void TaskService.unlockTaskForUser(TaskID taskID, UserID userID)
          Unlocks the task for the given user so that its given back to the team for another user to complete.
 

Constructors in org.apache.agila.services.task with parameters of type UserID
TaskImpl(UserID userid, TokenID tokenID, InstanceID instanceID, java.lang.String desc, java.util.Date d, int status)
           
 

Uses of UserID in org.apache.agila.services.user
 

Fields in org.apache.agila.services.user declared as UserID
protected  UserID UserInfo.userID
           
 

Methods in org.apache.agila.services.user that return UserID
 UserID UserService.addUser(UserInfo newUser)
           
 UserID AbstractUserService.addUser(UserInfo newUser)
           
 UserID UserInfo.getUserID()
           
protected abstract  UserID AbstractUserService.internalAddUser(UserInfo newUser)
           
 

Methods in org.apache.agila.services.user with parameters of type UserID
 UserInfo UserService.getUserInfo(UserID id)
           
 UserInfo AbstractUserService.getUserInfo(UserID id)
           
protected abstract  UserInfo AbstractUserService.internalGetUserInfo(UserID id)
           
 void UserInfo.setUserID(UserID id)
           
 

Uses of UserID in org.apache.agila.util
 

Methods in org.apache.agila.util that return UserID
 UserID JDBCUtil.addUser(UserInfo newUser)
           
 

Methods in org.apache.agila.util with parameters of type UserID
 java.util.List JDBCUtil.getTasksForUser(UserID userID, int status)
           
 UserInfo JDBCUtil.getUserInfo(UserID id)
           
 boolean JDBCUtil.lockTaskForUser(TaskID taskID, UserID userID)
           
 void JDBCUtil.unlockTaskForUser(TaskID taskID, UserID userID)
           
 



Copyright © 2004-2005 The Apache Software Foundation. All Rights Reserved.