| org.kuali.module.cg.service.ProjectDirectorService
All known Subclasses: org.kuali.module.cg.service.impl.ProjectDirectorServiceImpl,
ProjectDirectorService | public interface ProjectDirectorService (Code) | | Services for ProjectDirectors
|
getByPersonUserIdentifier | public ProjectDirector getByPersonUserIdentifier(String username)(Code) | | Finds a ProjectDirector by username. That's a secondary key to UniversalUser, used to get the ProjectDirector's primary key,
the universal user ID number.
Parameters: username - the person user identifier of the ProjectDirector to get the corresponding ProjectDirector, or null if none |
getByPrimaryId | public ProjectDirector getByPrimaryId(String universalIdentifier)(Code) | | Finds a ProjectDirector by universal user ID number. That's the primary key to ProjectDirector, and coincidentally to
UniversalUser too.
Parameters: universalIdentifier - the universal user ID number of the ProjectDirector to get the corresponding ProjectDirector, or null if none |
primaryIdExists | public boolean primaryIdExists(String universalIdentifier)(Code) | | Checks for the existence of a ProjectDirector by universal user ID number. That's the primary key to ProjectDirector, and
coincidentally to UniversalUser too.
Parameters: universalIdentifier - the universal user ID number of the ProjectDirector to get whether the corresponding ProjectDirector exists |
|
|