AnnouncementsService

public final class AnnouncementsService

Service for the announcements table in the database

Author

Francesco Masala

Constructors

Functions

Link copied to clipboard
public final Id<Announcements> create(Announcements user)

Create an announcement in the database

Link copied to clipboard
public final List<Announcements> findAll()

Get all the announcements from the database

Link copied to clipboard
public final List<Announcements> findAllByUser(String UserID)

Get all announcements for a user (used by logged-in user)

Link copied to clipboard
public final List<Announcements> findByCategory(String Category)

Get all announcements for a category

Link copied to clipboard
public final AnnouncementsData findByID(String id)

Get a specific announcement from the database

Link copied to clipboard
public final List<Announcements> findByISBN(Long isbn)

Get a specific announcement from the database

Link copied to clipboard
public final List<Announcements> findByName(String Name)

Get all announcements for a book name

Link copied to clipboard
public final List<Announcements> findByPrice(Double price)

Get a specific announcement from the database based of category

Link copied to clipboard
public final List<Announcements> findByUser(String UserID)

Get all announcements for a user (used by logged-in user for searching other users)

Link copied to clipboard
public final List<Announcements> findByYear(Integer Year)

Get all announcements for a book year

Link copied to clipboard
public final String obtainProperty(String property)