source: DASISH/t5.6/backend/annotator-backend/trunk/annotator-backend/src/main/java/eu/dasish/annotation/backend/dao/UserDao.java @ 4546

Last change on this file since 4546 was 4546, checked in by olhsha, 10 years ago

refactored.Redundar row mappers are some other methods are thrown away

File size: 1.8 KB
Line 
1/*
2 * Copyright (C) 2013 DASISH
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
17 */
18package eu.dasish.annotation.backend.dao;
19
20import eu.dasish.annotation.schema.Permission;
21import eu.dasish.annotation.schema.User;
22import java.util.List;
23import java.util.UUID;
24
25
26/**
27 *
28 * @author olhsha
29 */
30public interface UserDao extends ResourceDao{
31   
32     public User getUser(Number internalID);
33     
34     public User getUserByInfo(String  eMail);
35     
36     // where is it used?
37     public boolean userIsInUse(Number userID);
38     
39     // where is it used??
40     public boolean userExists(User user);
41     
42     public String getTypeOfUserAccount(Number internalID);
43     
44     public String getRemoteID(Number internalID);
45     
46     
47     public Number getUserInternalIDFromRemoteID(String remoteID);
48     
49     public List<Number> getPrincipalIDsWithPermissionForNotebook(Number notebookID, Permission permission);
50     
51     public boolean updateAccount(UUID externalID, String account);
52     
53     public Number updateUser(User user);
54   
55     public Number addUser(User user, String remoteID);
56     
57     public int deleteUser(Number intenralID);
58     
59     public int deleteUserSafe(Number internalID);
60 
61     
62}
63
64
Note: See TracBrowser for help on using the repository browser.