Subversion Repository Public Repository

Aurocare_27_07_2018

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.bestray.healthcareemr.Service;

import com.bestray.healthcarecommonutil.exception.ProcessingException;
import com.bestray.healthcarecommonutil.vo.TAccount;
import com.bestray.healthcarecommonutil.vo.TDepartmentMaster;
import com.bestray.healthcarecommonutil.vo.TDoctorInformation;
import java.util.List;
import java.util.Vector;
import org.springframework.orm.hibernate3.HibernateOptimisticLockingFailureException;


// TODO: Auto-generated Javadoc
/**
 * The Interface UserSetupService.
 *
 * @author user3
 */
public interface UserSetupService {
    
    public List<TDepartmentMaster> getDepartmentList()throws ProcessingException;

    public void updateUserPassword(TAccount newUserAccount)throws ProcessingException,HibernateOptimisticLockingFailureException;

    public TDoctorInformation getDocInfoFromDocId(String docid)throws ProcessingException;

    public int numberOfUserAccountRecords(String expr)throws ProcessingException;

    public Vector<Vector<String>> getUserAccountList(String expr, int min, int max)throws ProcessingException;
   
    public TAccount getUserAccountValues(Integer ID)throws ProcessingException ;
    
    public void deleteAccount(TAccount account)throws ProcessingException,IllegalArgumentException;
    
    public List<TAccount> allAccountList()throws ProcessingException;
    
    public List<TAccount> getUserByUsername(String username)throws ProcessingException;

    
    //public boolean savePermission(TPermission permission)throws ProcessingException; 

    //public List<TPermission> getPermissionList()throws ProcessingException;

    //public void saveRoleWithPermission(TRole role, List<TPermission> permissionList)throws ProcessingException;

    //public List<TRole> getRoleList()throws ProcessingException;

    //public void saveAccountWithRole(TAccount account, List<TRole> rolelist, List<TDepartmentMaster> deptList)throws ProcessingException;

    //public TPermission getPermissionByName(String permissionName)throws ProcessingException;

    //public Vector<Vector<String>> getAllRoleIntoTable()throws ProcessingException;

    //public List<TPermission> getPermissionListByRole(TRole role)throws ProcessingException;

    //public TRole getRoleByRoleId(Long roleid)throws ProcessingException;

    //public List<TRole> getRolesByName(String name) throws ProcessingException;
    
    //public List<TRolePermission> findRolePermissions(Long roleId) throws DataAccessException;
     
    //public void saveRolePermissions(List<TRolePermission> rolePermissions) throws DataAccessException;
     
    //public void addRole(TRole newrole)throws ProcessingException;

    //public void saveRoleWithPermission(TRolePermission newrolepermission)throws ProcessingException;

    //public TRolePermission getRolePermission(TRole role, TPermission selectedpermission)throws ProcessingException;

    //public void deletePermissionFromRole(TRolePermission rolepermission)throws ProcessingException;

    //public List<TAccountDepartment> getDepartmentByAccount(TAccount account)throws ProcessingException;

    //public void deleteDepartmentAssignedAcc(List<TAccountDepartment> accountDepartment)throws ProcessingException;

    //public List<TAccountRole> getRoleByAccount(TAccount account)throws ProcessingException;

    //public void deleteRoleAssignedAcc(List<TAccountRole> accountRole)throws ProcessingException;

    

}

Commits for Aurocare_27_07_2018/AuroCareEMR/src/main/java/com/bestray/healthcareemr/Service/UserSetupService.java

Diff revisions: vs.
Revision Author Commited Message
1 girijabapi picture girijabapi Fri 27 Jul, 2018 07:21:55 +0000