Interface CRUDService<T>

Type Parameters:
T -
All Known Subinterfaces:
RLCResultService, RoleService, UserService, WLCResultService
All Known Implementing Classes:
PentestResultParserServiceImpl, PerfTestParserServiceImpl, RLCResultServiceImpl, RoleServiceImpl, UserServiceImpl, WLCResultServiceImpl

public interface CRUDService<T>
  • Method Details

    • listAll

      List<?> listAll()
    • getById

      T getById(Long id)
    • saveOrUpdate

      void saveOrUpdate(T domainObject)
    • delete

      void delete(Long id)