/* * PatientView * * Copyright (c) Worth Solutions Limited 2004-2013 * * This file is part of PatientView. * * PatientView is free software: you can redistribute it and/or modify it under the terms of the * GNU General Public License as published by the Free Software Foundation, either version 3 of the License, * or (at your option) any later version. * PatientView is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License along with PatientView in a file * titled COPYING. If not, see <http://www.gnu.org/licenses/>. * * @package PatientView * @link http://www.patientview.org * @author PatientView <info@patientview.org> * @copyright Copyright (c) 2004-2013, Worth Solutions Limited * @license http://www.gnu.org/licenses/gpl-3.0.html The GNU General Public License V3.0 */ package org.patientview.service; import org.patientview.patientview.logon.PatientLogon; import org.patientview.patientview.logon.UnitAdmin; import org.patientview.model.Specialty; import org.patientview.patientview.model.SpecialtyUserRole; import org.patientview.patientview.model.User; import org.patientview.patientview.model.UserMapping; import org.springframework.security.access.annotation.Secured; import org.springframework.transaction.annotation.Propagation; import org.springframework.transaction.annotation.Transactional; import java.util.List; /** * Note: all these methods now require a logged in user */ @Transactional(propagation = Propagation.REQUIRED) @Secured(value = { "ROLE_ANY_USER" }) public interface UserManager { User getLoggedInUser(); User get(Long id); /** * It is planned to have this method secured so that only users with mappings to one of the requested users * units, using: @UnitSecured(value = "UNIT_ACCESS") * * It should be possible to turn this on now, but there may well still be a couple of bugs in there. * @param username * @return */ User get(String username); String getLoggedInUserRole(); Specialty getCurrentSpecialty(User user); String getCurrentSpecialtyRole(User user); List<SpecialtyUserRole> getSpecialtyUserRoles(User user); void save(User user); User saveUserFromUnitAdmin(UnitAdmin unitAdmin, String unitcode); User saveUserFromPatient(PatientLogon patientLogon); void delete(String username, String unitcode); List<User> getAllUsers(); void save(UserMapping userMapping); void deleteUserMappings(String username, String unitcode); List<UserMapping> getUserMappings(String username); List<UserMapping> getUserMappingsExcludeUnitcode(String username, String unitcode); List<UserMapping> getUserMappings(String username, String unitcode); List<UserMapping> getUserMappingsForNhsNo(String nhsNo); String getUsersRealUnitcodeBestGuess(String username); String getUsersRealNhsNoBestGuess(String username); UserMapping getUserMappingPatientEntered(User user); List<UserMapping> getUsersSiblings(String username, String unitcode); List<UserMapping> getDuplicateUsers(String nhsno, String username); boolean patientExistsInRadar(String nhsno); boolean userExistsInRadar(Long userId); void createProfessionalUserInRadar(User user, String unitcode); void removeUserFromRadar(Long userId); }