Package com.patreonshout.beans
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 listprotected int
listId
list_id is the index/primary key for the list_posts table in our databaseprotected java.lang.String
title
title is the title of the listprotected int
webAccountId
webAccount is the id corresponding our list to the user'sWebAccount
-
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 listIdlist_id is the index/primary key for the list_posts table in our database -
title
protected java.lang.String titletitle is the title of the list -
description
protected java.lang.String descriptiondescription is the description of the list -
webAccountId
protected int webAccountIdwebAccount is the id corresponding our list to the user'sWebAccount
-
-
Constructor Details
-
ListBean
public ListBean()
-