refactor: arranged de/serializers into packages
This commit is contained in:
parent
852c85df08
commit
d080fff5d3
@ -2,8 +2,8 @@ package uulm.teamname.marvelous.gamelibrary;
|
||||
|
||||
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import uulm.teamname.marvelous.gamelibrary.json.ingame.IntVector2Deserializer;
|
||||
import uulm.teamname.marvelous.gamelibrary.json.ingame.IntVector2Serializer;
|
||||
import uulm.teamname.marvelous.gamelibrary.json.ingame.deserialize.IntVector2Deserializer;
|
||||
import uulm.teamname.marvelous.gamelibrary.json.ingame.serialize.IntVector2Serializer;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Objects;
|
||||
|
@ -2,7 +2,7 @@ package uulm.teamname.marvelous.gamelibrary.entities;
|
||||
|
||||
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
|
||||
import uulm.teamname.marvelous.gamelibrary.IntVector2;
|
||||
import uulm.teamname.marvelous.gamelibrary.json.ingame.EntityDeserializer;
|
||||
import uulm.teamname.marvelous.gamelibrary.json.ingame.deserialize.EntityDeserializer;
|
||||
|
||||
import java.util.Objects;
|
||||
|
||||
|
@ -3,7 +3,7 @@ package uulm.teamname.marvelous.gamelibrary.entities;
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
|
||||
import uulm.teamname.marvelous.gamelibrary.json.ingame.EntityIDDeserializer;
|
||||
import uulm.teamname.marvelous.gamelibrary.json.ingame.deserialize.EntityIDDeserializer;
|
||||
|
||||
import java.util.Objects;
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
package uulm.teamname.marvelous.gamelibrary.events;
|
||||
|
||||
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
|
||||
import uulm.teamname.marvelous.gamelibrary.json.ingame.EventDeserializer;
|
||||
import uulm.teamname.marvelous.gamelibrary.json.ingame.deserialize.EventDeserializer;
|
||||
import uulm.teamname.marvelous.gamelibrary.json.basic.EventMessage;
|
||||
|
||||
import java.util.Objects;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package uulm.teamname.marvelous.gamelibrary.json.ingame;
|
||||
package uulm.teamname.marvelous.gamelibrary.json.ingame.deserialize;
|
||||
|
||||
import com.fasterxml.jackson.core.JsonParser;
|
||||
import com.fasterxml.jackson.core.JsonProcessingException;
|
@ -1,4 +1,4 @@
|
||||
package uulm.teamname.marvelous.gamelibrary.json.ingame;
|
||||
package uulm.teamname.marvelous.gamelibrary.json.ingame.deserialize;
|
||||
|
||||
import com.fasterxml.jackson.core.JsonParser;
|
||||
import com.fasterxml.jackson.core.JsonProcessingException;
|
@ -1,4 +1,4 @@
|
||||
package uulm.teamname.marvelous.gamelibrary.json.ingame;
|
||||
package uulm.teamname.marvelous.gamelibrary.json.ingame.deserialize;
|
||||
|
||||
import com.fasterxml.jackson.core.JsonParser;
|
||||
import com.fasterxml.jackson.core.ObjectCodec;
|
@ -1,4 +1,4 @@
|
||||
package uulm.teamname.marvelous.gamelibrary.json.ingame;
|
||||
package uulm.teamname.marvelous.gamelibrary.json.ingame.deserialize;
|
||||
|
||||
import com.fasterxml.jackson.core.JsonParser;
|
||||
import com.fasterxml.jackson.core.JsonProcessingException;
|
@ -1,4 +1,4 @@
|
||||
package uulm.teamname.marvelous.gamelibrary.json.ingame;
|
||||
package uulm.teamname.marvelous.gamelibrary.json.ingame.deserialize;
|
||||
|
||||
import com.fasterxml.jackson.core.JsonParser;
|
||||
import com.fasterxml.jackson.core.JsonProcessingException;
|
@ -1,4 +1,4 @@
|
||||
package uulm.teamname.marvelous.gamelibrary.json.ingame;
|
||||
package uulm.teamname.marvelous.gamelibrary.json.ingame.serialize;
|
||||
|
||||
import com.fasterxml.jackson.core.JsonGenerator;
|
||||
import com.fasterxml.jackson.databind.SerializerProvider;
|
@ -1,4 +1,4 @@
|
||||
package uulm.teamname.marvelous.gamelibrary.json.ingame;
|
||||
package uulm.teamname.marvelous.gamelibrary.json.ingame.serialize;
|
||||
|
||||
import com.fasterxml.jackson.core.JsonGenerator;
|
||||
import com.fasterxml.jackson.databind.SerializerProvider;
|
@ -1,13 +1,11 @@
|
||||
package uulm.teamname.marvelous.gamelibrary.requests;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonAlias;
|
||||
import com.fasterxml.jackson.annotation.JsonKey;
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import uulm.teamname.marvelous.gamelibrary.json.basic.EventMessage;
|
||||
import uulm.teamname.marvelous.gamelibrary.json.ingame.RequestDeserializer;
|
||||
import uulm.teamname.marvelous.gamelibrary.json.ingame.RequestSerializer;
|
||||
import uulm.teamname.marvelous.gamelibrary.json.ingame.deserialize.RequestDeserializer;
|
||||
import uulm.teamname.marvelous.gamelibrary.json.ingame.serialize.RequestSerializer;
|
||||
|
||||
import java.util.Objects;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user