Class WebAccount

java.lang.Object
com.patreonshout.beans.WebAccount

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

    Fields
    Modifier and Type Field Description
    (package private) PatreonTokens creatorTokens
    creatorTokens is the PatreonTokens object linked with this WebAccount object
    protected java.lang.String loginToken
    login_token is a String that holds the login token for the account
    (package private) OldPasswords oldPasswords
    oldPasswords is the OldPasswords object linked with this WebAccount object
    protected java.lang.String password
    password is a String that holds the password for the account
    protected java.lang.String passwordSalt
    password_salt is a String that holds the password salt for the account
    (package private) SocialIntegration socialIntegration
    socialIntegration is the SocialIntegration object linked with this WebAccount object
    (package private) java.util.List<Tag> tags
    tags is the list of Tag objects linked with this WebAccount object
    protected java.lang.String username
    username is a unique String that holds the username for the account
    protected int webAccountId
    webaccount_id is a Integer primary key for the webaccounts table in the database
  • Constructor Summary

    Constructors
    Constructor Description
    WebAccount()  
  • Method Summary

    Methods inherited from class java.lang.Object

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

    • webAccountId

      protected int webAccountId
      webaccount_id is a Integer primary key for the webaccounts table in the database
    • username

      protected java.lang.String username
      username is a unique String that holds the username for the account
    • password

      protected java.lang.String password
      password is a String that holds the password for the account
    • passwordSalt

      protected java.lang.String passwordSalt
      password_salt is a String that holds the password salt for the account
    • loginToken

      protected java.lang.String loginToken
      login_token is a String that holds the login token for the account
    • socialIntegration

      SocialIntegration socialIntegration
      socialIntegration is the SocialIntegration object linked with this WebAccount object
    • creatorTokens

      PatreonTokens creatorTokens
      creatorTokens is the PatreonTokens object linked with this WebAccount object
    • oldPasswords

      OldPasswords oldPasswords
      oldPasswords is the OldPasswords object linked with this WebAccount object
    • tags

      java.util.List<Tag> tags
      tags is the list of Tag objects linked with this WebAccount object
  • Constructor Details

    • WebAccount

      public WebAccount()