Class SearchFilter

java.lang.Object
com.patreonshout.beans.SearchFilter

@Entity
public class SearchFilter
extends java.lang.Object
POJO that relates to the search_filter table in our database
  • Field Summary

    Fields
    Modifier and Type Field Description
    private java.lang.String filter
    filter is the search term that is set as the filter
    private java.lang.Long filterId
    filter _id is the index/primary key for the search_filters table in our database
    private java.lang.String filterName
    filter_name is the name of the filter shown on the filter list
    private int webaccountId
    webaccountId is the id of the user's web account
  • Constructor Summary

    Constructors
    Constructor Description
    SearchFilter()  
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • filterId

      private java.lang.Long filterId
      filter _id is the index/primary key for the search_filters table in our database
    • filter

      private java.lang.String filter
      filter is the search term that is set as the filter
    • filterName

      private java.lang.String filterName
      filter_name is the name of the filter shown on the filter list
    • webaccountId

      private int webaccountId
      webaccountId is the id of the user's web account
  • Constructor Details

    • SearchFilter

      public SearchFilter()