-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding public empty constructors for JSON parsing and Response Data R…
…esolver. Signed-off-by: Dima Rudenko <dima@coti.io>
- Loading branch information
1 parent
09b402a
commit 73c3f9a
Showing
7 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
basenode/src/main/java/io/coti/basenode/http/data/BaseTransactionResponseDataResolver.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
package io.coti.basenode.http.data; | ||
|
||
import com.fasterxml.jackson.annotation.JsonTypeInfo; | ||
import com.fasterxml.jackson.databind.DatabindContext; | ||
import com.fasterxml.jackson.databind.JavaType; | ||
import com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase; | ||
|
||
public class BaseTransactionResponseDataResolver extends TypeIdResolverBase { | ||
|
||
@Override | ||
public String idFromValue(Object value) { | ||
return idFromValueAndType(value, value.getClass()); | ||
} | ||
|
||
@Override | ||
public String idFromValueAndType(Object value, Class<?> suggestedType) { | ||
BaseTransactionResponseClass baseTransactionResponseClass = BaseTransactionResponseClass.getName(suggestedType); | ||
if (baseTransactionResponseClass == null) { | ||
throw new IllegalStateException("Invalid base transaction class " + suggestedType); | ||
} | ||
return baseTransactionResponseClass.name(); | ||
} | ||
|
||
@Override | ||
public JsonTypeInfo.Id getMechanism() { | ||
return JsonTypeInfo.Id.CUSTOM; | ||
} | ||
|
||
@Override | ||
public JavaType typeFromId(DatabindContext context, String id) { | ||
try { | ||
BaseTransactionResponseClass baseTransactionResponse = BaseTransactionResponseClass.valueOf(id); | ||
return context.constructType(baseTransactionResponse.getResponseClass()); | ||
} catch (IllegalArgumentException e) { | ||
throw new IllegalStateException("Invalid base transaction name " + id, e); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters