Project

General

Profile

« Previous | Next » 

Revision 59805

[User Management]: Update registered service table and methods

View differences:

RegisteredServiceDao.java
7 7

  
8 8
public interface RegisteredServiceDao {
9 9

  
10
    public int insertRegisteredService(RegisteredService registeredService) throws SQLException ;
11
    public boolean update (final RegisteredService registeredService) throws SQLException;
12
    public boolean delete (int id) throws SQLException;
10
    public int insertRegisteredService(RegisteredService registeredService) throws SQLException;
11

  
12
    public boolean update(final RegisteredService registeredService) throws SQLException;
13

  
14
    public boolean delete(int id) throws SQLException;
15

  
13 16
    public RegisteredService fetchRegisteredServiceById(int id) throws SQLException;
17

  
14 18
    public List<RegisteredService> fetchAllRegisteredServicesByOwner(String owner) throws SQLException;
19

  
15 20
    public long countRegisteredServices(String owner) throws SQLException;
16 21

  
17
    }
22
}

Also available in: Unified diff