Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
org.jeteam.bean.project.ProjectException

Uses of ProjectException in org.jeteam.bean.project
 

Methods in org.jeteam.bean.project that throw ProjectException
 ProjectDTO ProjectServiceBeanImpl.createProject(ProjectDTO project)
           
 void ProjectServiceBeanImpl.removeProject(ProjectDTO project)
           
 ProjectDTO[] ProjectServiceBeanImpl.getProjects()
           
 ProjectDTO[] ProjectServiceBeanImpl.getAllProjects()
           
 org.jeteam.bean.user.UserDTO[] ProjectServiceBeanImpl.getUsers(ProjectDTO project)
           
 void ProjectServiceBeanImpl.removeUser(ProjectDTO project, org.jeteam.bean.user.UserDTO user)
           
 void ProjectServiceBeanImpl.clearUsers(ProjectDTO project)
           
 void ProjectServiceBeanImpl.updateProject(ProjectDTO project)
           
 void ProjectServiceBeanImpl.addUser(ProjectDTO project, org.jeteam.bean.user.UserDTO user)
           
 void ProjectServiceBeanImpl.addTask(ProjectDTO project, org.jeteam.bean.task.TaskDTO task)
           
 void ProjectServiceBeanImpl.setStatus(ProjectDTO project, org.jeteam.bean.config.StatusDTO status)
           
 org.jeteam.bean.config.StatusDTO ProjectServiceBeanImpl.getStatus(ProjectDTO project)
           
 org.jeteam.bean.security.RoleDTO[] ProjectServiceBeanImpl.getRoles(ProjectDTO project)
           
 void ProjectServiceBeanImpl.addRole(ProjectDTO project, org.jeteam.bean.security.RoleDTO role)
           
 void ProjectServiceBeanImpl.removeRole(ProjectDTO project, org.jeteam.bean.security.RoleDTO role)
           
 void ProjectServiceBeanImpl.clearRoles(ProjectDTO project)
           
 void ProjectServiceBeanImpl.addUsers(ProjectDTO project, org.jeteam.bean.user.UserDTO[] users)
           
 org.jeteam.bean.task.TaskDTO[] ProjectServiceBeanImpl.getTasks(ProjectDTO project)
           
 void ProjectServiceBeanImpl.clearTasks(ProjectDTO project)
           
 void ProjectServiceBeanImpl.removeTask(ProjectDTO project, org.jeteam.bean.task.TaskDTO task)
           
private  ProjectLocal ProjectServiceBeanImpl.verifyProject(ProjectDTO project)
          Checks if the argument project would be valid if persisted, meaning the name would not collide with another project (project names must always be unique).
private  java.lang.String ProjectServiceBeanImpl.verifyProjectName(ProjectDTO project)
          Verifies whether the argument project has a valid name.
abstract  ProjectDTO ProjectServiceBean.createProject(ProjectDTO project)
           When creating a new project make sure the project name does not already exists.
abstract  void ProjectServiceBean.removeProject(ProjectDTO project)
           Removing a project will result in setting its 'deleted' attribute to the current date (not null ) so it will be logically deleted.
abstract  ProjectDTO[] ProjectServiceBean.getProjects()
           Getting the projects will only return the ones that have not been logically deleted, use getAllProjects() in case you need to retrieve the complete list of projects.
abstract  ProjectDTO[] ProjectServiceBean.getAllProjects()
           Returns all projects that can be found.
abstract  org.jeteam.bean.user.UserDTO[] ProjectServiceBean.getUsers(ProjectDTO project)
           Returns all the users associated with this project.
abstract  void ProjectServiceBean.removeUser(ProjectDTO project, org.jeteam.bean.user.UserDTO user)
           Removing a user from a project will result in removing the user from the relationship, it will not be deleted.
abstract  void ProjectServiceBean.clearUsers(ProjectDTO project)
           Removes all users from this project.
abstract  void ProjectServiceBean.updateProject(ProjectDTO project)
           Updates this project's information, this can be either the name or the description.
abstract  void ProjectServiceBean.addUser(ProjectDTO project, org.jeteam.bean.user.UserDTO user)
           Assigns a new user to this project, if the user has already been assigned to this project nothing happens.
abstract  void ProjectServiceBean.addTask(ProjectDTO project, org.jeteam.bean.task.TaskDTO task)
           Assigns a new task to this project, if the task has already been assigned to this project nothing happens.
abstract  void ProjectServiceBean.setStatus(ProjectDTO project, org.jeteam.bean.config.StatusDTO status)
           Sets the status of this project.
abstract  org.jeteam.bean.config.StatusDTO ProjectServiceBean.getStatus(ProjectDTO project)
           Gets the status of this project.
abstract  org.jeteam.bean.security.RoleDTO[] ProjectServiceBean.getRoles(ProjectDTO project)
           Returns the collection of roles that users must have before being able to be assigned to this project.
abstract  void ProjectServiceBean.addRole(ProjectDTO project, org.jeteam.bean.security.RoleDTO role)
           Adds a new role this this project, this may allow other users to be assigned to this project.
abstract  void ProjectServiceBean.removeRole(ProjectDTO project, org.jeteam.bean.security.RoleDTO role)
           Removes a role from the project.
abstract  void ProjectServiceBean.clearRoles(ProjectDTO project)
           Removes all roles from the project.
abstract  void ProjectServiceBean.addUsers(ProjectDTO project, org.jeteam.bean.user.UserDTO[] users)
           Adds the list of users to the existing list associated with the argument project.
abstract  org.jeteam.bean.task.TaskDTO[] ProjectServiceBean.getTasks(ProjectDTO project)
           Returns all the tasks that have been created for this project.
abstract  void ProjectServiceBean.clearTasks(ProjectDTO project)
           Removes all the tasks that have been created for this project.
abstract  void ProjectServiceBean.removeTask(ProjectDTO project, org.jeteam.bean.task.TaskDTO task)
           Removes the specified task from the argument project.