Uses of Class
de.trustable.ca3s.core.domain.ImportedURL
-
Packages that use ImportedURL Package Description de.trustable.ca3s.core.domain JPA domain objects.de.trustable.ca3s.core.repository Spring Data JPA repositories.de.trustable.ca3s.core.service Service layer beans.de.trustable.ca3s.core.service.impl de.trustable.ca3s.core.web.rest Spring MVC REST controllers. -
-
Uses of ImportedURL in de.trustable.ca3s.core.domain
Fields in de.trustable.ca3s.core.domain with type parameters of type ImportedURL Modifier and Type Field Description static javax.persistence.metamodel.SingularAttribute<ImportedURL,Long>ImportedURL_. idstatic javax.persistence.metamodel.SingularAttribute<ImportedURL,Instant>ImportedURL_. importDatestatic javax.persistence.metamodel.SingularAttribute<ImportedURL,String>ImportedURL_. nameMethods in de.trustable.ca3s.core.domain that return ImportedURL Modifier and Type Method Description ImportedURLImportedURL. importDate(Instant importDate)ImportedURLImportedURL. name(String name) -
Uses of ImportedURL in de.trustable.ca3s.core.repository
Methods in de.trustable.ca3s.core.repository that return types with arguments of type ImportedURL Modifier and Type Method Description List<ImportedURL>ImportedURLRepository. findEntityByUrl(String url) -
Uses of ImportedURL in de.trustable.ca3s.core.service
Methods in de.trustable.ca3s.core.service that return ImportedURL Modifier and Type Method Description ImportedURLImportedURLService. save(ImportedURL importedURL)Save a importedURL.Methods in de.trustable.ca3s.core.service that return types with arguments of type ImportedURL Modifier and Type Method Description List<ImportedURL>ImportedURLService. findAll()Get all the importedURLS.Optional<ImportedURL>ImportedURLService. findOne(Long id)Get the "id" importedURL.Methods in de.trustable.ca3s.core.service with parameters of type ImportedURL Modifier and Type Method Description ImportedURLImportedURLService. save(ImportedURL importedURL)Save a importedURL. -
Uses of ImportedURL in de.trustable.ca3s.core.service.impl
Methods in de.trustable.ca3s.core.service.impl that return ImportedURL Modifier and Type Method Description ImportedURLImportedURLServiceImpl. save(ImportedURL importedURL)Save a importedURL.Methods in de.trustable.ca3s.core.service.impl that return types with arguments of type ImportedURL Modifier and Type Method Description List<ImportedURL>ImportedURLServiceImpl. findAll()Get all the importedURLS.Optional<ImportedURL>ImportedURLServiceImpl. findOne(Long id)Get one importedURL by id.Methods in de.trustable.ca3s.core.service.impl with parameters of type ImportedURL Modifier and Type Method Description ImportedURLImportedURLServiceImpl. save(ImportedURL importedURL)Save a importedURL. -
Uses of ImportedURL in de.trustable.ca3s.core.web.rest
Methods in de.trustable.ca3s.core.web.rest that return types with arguments of type ImportedURL Modifier and Type Method Description org.springframework.http.ResponseEntity<ImportedURL>ImportedURLResource. createImportedURL(@Valid ImportedURL importedURL)POST /imported-urls: Create a new importedURL.List<ImportedURL>ImportedURLResource. getAllImportedURLS()GET /imported-urls: get all the importedURLS.org.springframework.http.ResponseEntity<ImportedURL>ImportedURLResource. getImportedURL(Long id)GET /imported-urls/:id: get the "id" importedURL.org.springframework.http.ResponseEntity<ImportedURL>ImportedURLResource. updateImportedURL(@Valid ImportedURL importedURL)PUT /imported-urls: Updates an existing importedURL.Methods in de.trustable.ca3s.core.web.rest with parameters of type ImportedURL Modifier and Type Method Description org.springframework.http.ResponseEntity<ImportedURL>ImportedURLResource. createImportedURL(@Valid ImportedURL importedURL)POST /imported-urls: Create a new importedURL.org.springframework.http.ResponseEntity<ImportedURL>ImportedURLResource. updateImportedURL(@Valid ImportedURL importedURL)PUT /imported-urls: Updates an existing importedURL.
-