Subversion Repository Public Repository

Pharmacy_09_03_18

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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.bestray.healthcareemr.ServiceImpl;

import com.bestray.healthcarecommonutil.serviceimpl.DepartmentMasterServiceImpl;
import com.bestray.healthcarecommonutil.exception.DataAccessException;
import com.bestray.healthcarecommonutil.exception.HealthCareException;
import com.bestray.healthcarecommonutil.exception.ProcessingException;
import com.bestray.healthcarecommonutil.serviceimpl.DiagnosisMasterServiceImpl;
import com.bestray.healthcarecommonutil.vo.TAccount;
import com.bestray.healthcarecommonutil.vo.TDepartmentMaster;
import com.bestray.healthcarecommonutil.vo.TDoctorInformation;
import com.bestray.healthcareemr.Dao.UserAccountDao;
import com.bestray.healthcareemr.Service.UserSetupService;
import java.text.SimpleDateFormat;
import java.util.List;
import java.util.Vector;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.orm.hibernate3.HibernateOptimisticLockingFailureException;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

// TODO: Auto-generated Javadoc
/**
 * The Class UserSetupServiceImpl.
 *
 * @author user3
 */
@Transactional
@Service
public class UserSetupServiceImpl implements UserSetupService{
    
    /** The user setup dao. */
    @Autowired
    private UserAccountDao userSetupDao;
    
    /** The flag. */
    private boolean flag;
    
    /** The sdf. */
    private SimpleDateFormat sdf;
    
    private TAccount acc;

    /**
     * Instantiates a new user setup service impl.
     */
    public UserSetupServiceImpl() {
        //this.userSetupDao = userSetupDao;
        sdf = new SimpleDateFormat("dd-MM-yyyy  hh:mm:ss a");
    }

    /**
     * Instantiates a new user setup service impl.
     *
     * @param userSetupDao the user setup dao
     */
   /* public UserSetupServiceImpl(UserAccountDao userSetupDao) {
        this.userSetupDao = userSetupDao;
        sdf = new SimpleDateFormat("dd-MM-yyyy  hh:mm:ss a");
    }*/

    /* (non-Javadoc)
     * @see com.bestray.healthcareemr.Service.UserSetupService#getDepartmentList()
     */
    @Override
    public List<TDepartmentMaster> getDepartmentList() throws ProcessingException {
        try{
            return userSetupDao.getDepartmentList();
        }catch(DataAccessException e){
            Logger.getLogger(UserSetupServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new ProcessingException();
        }
    }

    /* (non-Javadoc)
     * @see com.bestray.healthcareemr.Service.UserSetupService#updateUserPassword(com.bestray.healthcareemr.Vo.TAccount)
     */
    @Override
    public void updateUserPassword(TAccount newUserAccount) throws ProcessingException,HibernateOptimisticLockingFailureException {
        try{
            userSetupDao.updateUserPassword(newUserAccount);
        }catch(HibernateOptimisticLockingFailureException e){
            Logger.getLogger(UserSetupServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new ProcessingException();
        }catch(DataAccessException e){
            Logger.getLogger(UserSetupServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new ProcessingException();
        }
    }

    /* (non-Javadoc)
     * @see com.bestray.healthcareemr.Service.UserSetupService#getDocInfoFromDocId(java.lang.String)
     */
    @Override
    public TDoctorInformation getDocInfoFromDocId(String docid) throws ProcessingException {
        try{
           return userSetupDao.getDocInfoFromDocId(docid);
        }catch(DataAccessException e){
            Logger.getLogger(UserSetupServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new ProcessingException();
        }
    }

    /* (non-Javadoc)
     * @see com.bestray.healthcareemr.Service.UserSetupService#numberOfUserAccountRecords(java.lang.String)
     */
    @Override
    public int numberOfUserAccountRecords(String expr) throws ProcessingException {
        try{
            return userSetupDao.numberOfUserAccountRecords(expr);
        }catch(DataAccessException e){
            Logger.getLogger(DiagnosisMasterServiceImpl.class.getName()).log(Level.SEVERE, null, e);
            throw new ProcessingException();
        }
    }

    /* (non-Javadoc)
     * @see com.bestray.healthcareemr.Service.UserSetupService#getUserAccountList(java.lang.String, int, int)
     */
    @Override
    public Vector<Vector<String>> getUserAccountList(String expr, int min, int max) throws ProcessingException {
        try {
            Vector<Vector<String>> userAccount = new Vector<Vector<String>>();
            List<TAccount> accountList= userSetupDao.findUserAccountList(expr,min,max);
            Vector<String> accts ; 
            for (TAccount acct : accountList) {
                accts = new Vector<String>();
                accts.add(String.valueOf(acct.getId()));
                accts.add(String.valueOf(min+1));
                accts.add(String.valueOf(acct.getFirstName()));
                accts.add(String.valueOf(acct.getLastName()));
                accts.add(String.valueOf(acct.getUserName()));
                if(acct.geteMail()!=null){
                accts.add(String.valueOf(acct.geteMail()));
                }else{
                accts.add("");
                }
                accts.add(sdf.format(acct.getCreatedDate()));
                userAccount.add(accts);
                min++;
            }
            return userAccount;
        }catch(DataAccessException ex) {
                throw new ProcessingException();
         }catch (Exception ex) {
            Logger.getLogger(DepartmentMasterServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
            throw new HealthCareException("Error in populating procedure data");
        }
    }

    /* (non-Javadoc)
     * @see com.bestray.healthcareemr.Service.UserSetupService#getUserAccountValues(java.lang.Integer)
     */
    @Override
    public TAccount getUserAccountValues(Integer ID) throws ProcessingException {
        try{
            return userSetupDao.getUserAccountValues(ID);
        }catch(DataAccessException e){
            throw new ProcessingException();
        }
    }
   
    @Override
    public void deleteAccount(TAccount account) throws ProcessingException,IllegalArgumentException {
        try{
            userSetupDao.deleteAccount(account);
        }catch(DataAccessException e){
            throw new ProcessingException();
        }catch(IllegalArgumentException e){
            throw e;
        }
    }

    @Override
    public List<TAccount> allAccountList() throws ProcessingException {
        try{
            return userSetupDao.allAccountList();
        }catch(DataAccessException e){
            throw new ProcessingException();
        }
    }

    @Override
    public List<TAccount> getUserByUsername(String username) throws ProcessingException {
        try{
            return userSetupDao.getUserByUsername(username);
        }catch(DataAccessException e){
            throw new ProcessingException();
        }
    }
  
}

Commits for Pharmacy_09_03_18/Dr Gyana ProjectSpace/DrGyanaEMR/src/main/java/com/bestray/healthcareemr/ServiceImpl/UserSetupServiceImpl.java

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