Class GetCoolerLinks

java.lang.Object
org.deltava.dao.DAO
org.deltava.dao.GetCoolerLinks

public class GetCoolerLinks extends DAO
A Data Access Object to load Water Cooler image links.
Since:
1.0
Version:
9.0
Author:
Luke
  • Constructor Details

    • GetCoolerLinks

      public GetCoolerLinks(Connection c)
      Initializes the Data Access Object.
      Parameters:
      c - the JDBC connection to use
  • Method Details

    • getThreads

      public Collection<Integer> getThreads() throws DAOException
      Returns the database IDs of all Message Threads with Linked Images.
      Returns:
      a Collection of database IDs
      Throws:
      DAOException - if a JDBC error occurs
    • getURLs

      public Collection<LinkedImage> getURLs(int id, boolean includeDisabled) throws DAOException
      Returns all Image URLs for a particular Messasge Thread.
      Parameters:
      id - the Message Thread database ID
      includeDisabled - TRUE if disabled links should be included, otherwise FALSE
      Returns:
      a Collection of URLs
      Throws:
      DAOException - if a JDBC error occurs