rename the package
This commit is contained in:
40
src/main/java/xyz/mcutils/backend/model/cache/CachedPlayer.java
vendored
Normal file
40
src/main/java/xyz/mcutils/backend/model/cache/CachedPlayer.java
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
package cc.fascinated.model.cache;
|
||||
|
||||
import cc.fascinated.common.CachedResponse;
|
||||
import cc.fascinated.model.player.Player;
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import lombok.Getter;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.Setter;
|
||||
import org.springframework.data.annotation.Id;
|
||||
import org.springframework.data.redis.core.RedisHash;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* A cacheable {@link Player}.
|
||||
*
|
||||
* @author Braydon
|
||||
*/
|
||||
@Setter @Getter
|
||||
@NoArgsConstructor
|
||||
@RedisHash(value = "player", timeToLive = 60L * 60L) // 1 hour (in seconds)
|
||||
public class CachedPlayer extends CachedResponse implements Serializable {
|
||||
/**
|
||||
* The unique id of the player.
|
||||
*/
|
||||
@JsonIgnore
|
||||
@Id private UUID uniqueId;
|
||||
|
||||
/**
|
||||
* The player to cache.
|
||||
*/
|
||||
private Player player;
|
||||
|
||||
public CachedPlayer(UUID uniqueId, Player player) {
|
||||
super(Cache.defaultCache());
|
||||
this.uniqueId = uniqueId;
|
||||
this.player = player;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user