Class ListBean

java.lang.Object
com.patreonshout.beans.ListBean
All Implemented Interfaces:
java.io.Serializable

@Entity
public class ListBean
extends java.lang.Object
implements java.io.Serializable
POJO that relates to the lists table in our database
See Also:
Serialized Form
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected java.lang.String description
    description is the description of the list
    protected int listId
    list_id is the index/primary key for the list_posts table in our database
    protected java.lang.String title
    title is the title of the list
    protected int webAccountId
    webAccount is the id corresponding our list to the user's WebAccount
  • Constructor Summary

    Constructors
    Constructor Description
    ListBean()  
  • Method Summary

    Methods inherited from class java.lang.Object

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

    • listId

      protected int listId
      list_id is the index/primary key for the list_posts table in our database
    • title

      protected java.lang.String title
      title is the title of the list
    • description

      protected java.lang.String description
      description is the description of the list
    • webAccountId

      protected int webAccountId
      webAccount is the id corresponding our list to the user's WebAccount
  • Constructor Details

    • ListBean

      public ListBean()