Class StoredPlayer
java.lang.Object
io.ebean.Model
fr.prodrivers.bukkit.commons.storage.player.StoredPlayer
@MappedSuperclass
public class StoredPlayer
extends io.ebean.Model
Stored Player
Base model for storing cross-plugin and cross-medium data related to players. Include most commons values across plugins.
This model can be extended in your plugin to add other attributes.
-
Constructor Summary
ConstructorsConstructorDescriptionStoredPlayer
(UUID uniqueId) Create a new stored player for player's provided Unique ID -
Method Summary
Modifier and TypeMethodDescriptionvoid
addDisciplinaryAction
(PlayerDisciplinaryAction disciplinaryAction) Add a disciplinary actions to a playerio.ebean.Database
db()
boolean
delete()
Disable method to avoid conflicting Ebean databases, as this method may use the first registered Ebean instance.boolean
delete
(io.ebean.Transaction transaction) Disable method to avoid conflicting Ebean databases, as this method may use the first registered Ebean instance.boolean
Disable method to avoid conflicting Ebean databases, as this method may use the first registered Ebean instance.boolean
deletePermanent
(io.ebean.Transaction transaction) Disable method to avoid conflicting Ebean databases, as this method may use the first registered Ebean instance.void
flush()
Disable method to avoid conflicting Ebean databases, as this method may use the first registered Ebean instance.Get disciplinary actions made against player@NonNull String
Get stored player's language@NonNull Date
Get stored player's last seen datedouble
getMoney()
Get stored player's amount of money@NonNull String
getName()
Get stored player's nameGet stored player's unique IDvoid
insert()
Disable method to avoid conflicting Ebean databases, as this method may use the first registered Ebean instance.void
insert
(io.ebean.Transaction transaction) Disable method to avoid conflicting Ebean databases, as this method may use the first registered Ebean instance.boolean
Get stored player's connection statusvoid
refresh()
Disable method to avoid conflicting Ebean databases, as this method may use the first registered Ebean instance.void
removeDisciplinaryAction
(PlayerDisciplinaryAction disciplinaryAction) Remove a disciplinary actions from a playervoid
Remove expired disciplinary actions from a playervoid
save()
Disable method to avoid conflicting Ebean databases, as this method may use the first registered Ebean instance.void
save
(io.ebean.Transaction transaction) Disable method to avoid conflicting Ebean databases, as this method may use the first registered Ebean instance.void
setConnected
(boolean connected) Set stored player's connection statusvoid
setLanguage
(@NonNull String language) Set stored player's languagevoid
setLastSeen
(@NonNull Date lastSeen) Set stored player's last seen datevoid
setMoney
(double money) Set stored player's amount of moneyvoid
Set stored player's namevoid
update()
Disable method to avoid conflicting Ebean databases, as this method may use the first registered Ebean instance.void
update
(io.ebean.Transaction transaction) Disable method to avoid conflicting Ebean databases, as this method may use the first registered Ebean instance.Methods inherited from class io.ebean.Model
markAsDirty, markPropertyUnset
-
Constructor Details
-
StoredPlayer
Create a new stored player for player's provided Unique ID- Parameters:
uniqueId
- Player's unique ID
-
-
Method Details
-
db
public io.ebean.Database db()- Overrides:
db
in classio.ebean.Model
-
save
public void save()Disable method to avoid conflicting Ebean databases, as this method may use the first registered Ebean instance.- Overrides:
save
in classio.ebean.Model
-
save
public void save(io.ebean.Transaction transaction) Disable method to avoid conflicting Ebean databases, as this method may use the first registered Ebean instance.- Overrides:
save
in classio.ebean.Model
- Parameters:
transaction
- Unused
-
flush
public void flush()Disable method to avoid conflicting Ebean databases, as this method may use the first registered Ebean instance.- Overrides:
flush
in classio.ebean.Model
-
update
public void update()Disable method to avoid conflicting Ebean databases, as this method may use the first registered Ebean instance.- Overrides:
update
in classio.ebean.Model
-
update
public void update(io.ebean.Transaction transaction) Disable method to avoid conflicting Ebean databases, as this method may use the first registered Ebean instance.- Overrides:
update
in classio.ebean.Model
- Parameters:
transaction
- Unused
-
insert
public void insert()Disable method to avoid conflicting Ebean databases, as this method may use the first registered Ebean instance.- Overrides:
insert
in classio.ebean.Model
-
insert
public void insert(io.ebean.Transaction transaction) Disable method to avoid conflicting Ebean databases, as this method may use the first registered Ebean instance.- Overrides:
insert
in classio.ebean.Model
- Parameters:
transaction
- Unused
-
delete
public boolean delete()Disable method to avoid conflicting Ebean databases, as this method may use the first registered Ebean instance.- Overrides:
delete
in classio.ebean.Model
-
delete
public boolean delete(io.ebean.Transaction transaction) Disable method to avoid conflicting Ebean databases, as this method may use the first registered Ebean instance.- Overrides:
delete
in classio.ebean.Model
- Parameters:
transaction
- Unused
-
deletePermanent
public boolean deletePermanent()Disable method to avoid conflicting Ebean databases, as this method may use the first registered Ebean instance.- Overrides:
deletePermanent
in classio.ebean.Model
-
deletePermanent
public boolean deletePermanent(io.ebean.Transaction transaction) Disable method to avoid conflicting Ebean databases, as this method may use the first registered Ebean instance.- Overrides:
deletePermanent
in classio.ebean.Model
- Parameters:
transaction
- Unused
-
refresh
public void refresh()Disable method to avoid conflicting Ebean databases, as this method may use the first registered Ebean instance.- Overrides:
refresh
in classio.ebean.Model
-
getUniqueId
Get stored player's unique ID- Returns:
- Stored player's unique ID
-
getName
Get stored player's name- Returns:
- Stored player's name
-
setName
Set stored player's name- Parameters:
name
- Stored player's name
-
getLastSeen
Get stored player's last seen date- Returns:
- Stored player's last seen date
-
setLastSeen
Set stored player's last seen date- Parameters:
lastSeen
- Stored player's last seen date
-
isConnected
public boolean isConnected()Get stored player's connection status- Returns:
- Stored player's connection status
-
setConnected
public void setConnected(boolean connected) Set stored player's connection status- Parameters:
connected
- Stored player's connection status
-
getMoney
public double getMoney()Get stored player's amount of money- Returns:
- Stored player's amount of money
-
setMoney
public void setMoney(double money) Set stored player's amount of money- Parameters:
money
- Stored player's amount of money
-
getLanguage
Get stored player's language- Returns:
- Stored player's language
-
setLanguage
Set stored player's language- Parameters:
language
- Stored player's language
-
getDisciplinaryActions
Get disciplinary actions made against player- Returns:
- Player's disciplinary actions
-
addDisciplinaryAction
Add a disciplinary actions to a player- Parameters:
disciplinaryAction
- Player's disciplinary actions
-
removeDisciplinaryAction
Remove a disciplinary actions from a player- Parameters:
disciplinaryAction
- Player's disciplinary actions
-
removeExpiredDisciplinaryActions
public void removeExpiredDisciplinaryActions()Remove expired disciplinary actions from a player
-