Package de.trustable.ca3s.core.service
Interface ImportedURLService
-
- All Known Implementing Classes:
ImportedURLServiceImpl
public interface ImportedURLServiceService Interface for managingImportedURL.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(Long id)Delete the "id" importedURL.List<ImportedURL>findAll()Get all the importedURLS.Optional<ImportedURL>findOne(Long id)Get the "id" importedURL.ImportedURLsave(ImportedURL importedURL)Save a importedURL.
-
-
-
Method Detail
-
save
ImportedURL save(ImportedURL importedURL)
Save a importedURL.- Parameters:
importedURL- the entity to save.- Returns:
- the persisted entity.
-
findAll
List<ImportedURL> findAll()
Get all the importedURLS.- Returns:
- the list of entities.
-
findOne
Optional<ImportedURL> findOne(Long id)
Get the "id" importedURL.- Parameters:
id- the id of the entity.- Returns:
- the entity.
-
delete
void delete(Long id)
Delete the "id" importedURL.- Parameters:
id- the id of the entity.
-
-