Skip to content
Snippets Groups Projects
Commit bf0af2f2 authored by pkupczyk's avatar pkupczyk
Browse files

SP-70 / BIS-35: JSON-RPC - detect subtypes automatically (first implementation)

SP-67 / BIS-35: Add Jackson annotations to all classes used in JSON-RPC interfaces (change @JsonTypeName to @JsonObject to make the annotation visible in JavaDoc)

SVN: 25391
parent 1a939608
No related branches found
No related tags found
No related merge requests found
...@@ -23,6 +23,11 @@ import java.lang.annotation.RetentionPolicy; ...@@ -23,6 +23,11 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target; import java.lang.annotation.Target;
/** /**
* Annotation all JSON transfered classes should be marked with. It was originally created to
* replace @JsonTypeName annotation which was not visible in the documentation. With @JsonTypeName
* annotation it would be impossible for our users to find a logical type name of a class to be sent
* to JSON-RPC services.
*
* @author pkupczyk * @author pkupczyk
*/ */
@Target( @Target(
......
...@@ -22,6 +22,8 @@ import ch.systemsx.cisd.common.api.server.json.JsonReflectionsSubTypeResolver; ...@@ -22,6 +22,8 @@ import ch.systemsx.cisd.common.api.server.json.JsonReflectionsSubTypeResolver;
import ch.systemsx.cisd.common.api.server.json.JsonTypeAndClassAnnotationIntrospector; import ch.systemsx.cisd.common.api.server.json.JsonTypeAndClassAnnotationIntrospector;
/** /**
* Jackson library object mapper used in generic OpenBIS.
*
* @author pkupczyk * @author pkupczyk
*/ */
public class GenericObjectMapper extends ObjectMapper public class GenericObjectMapper extends ObjectMapper
...@@ -31,7 +33,7 @@ public class GenericObjectMapper extends ObjectMapper ...@@ -31,7 +33,7 @@ public class GenericObjectMapper extends ObjectMapper
{ {
setAnnotationIntrospector(new JsonTypeAndClassAnnotationIntrospector( setAnnotationIntrospector(new JsonTypeAndClassAnnotationIntrospector(
new GenericJsonClassValueToClassObjectsMapping())); new GenericJsonClassValueToClassObjectsMapping()));
setSubtypeResolver(new JsonReflectionsSubTypeResolver()); setSubtypeResolver(JsonReflectionsSubTypeResolver.getDefaultInstance());
} }
} }
...@@ -22,6 +22,8 @@ import ch.systemsx.cisd.common.api.server.json.JsonReflectionsSubTypeResolver; ...@@ -22,6 +22,8 @@ import ch.systemsx.cisd.common.api.server.json.JsonReflectionsSubTypeResolver;
import ch.systemsx.cisd.common.api.server.json.JsonTypeAndClassAnnotationIntrospector; import ch.systemsx.cisd.common.api.server.json.JsonTypeAndClassAnnotationIntrospector;
/** /**
* Jackson library object mapper used in screening OpenBIS.
*
* @author pkupczyk * @author pkupczyk
*/ */
public class ScreeningObjectMapper extends ObjectMapper public class ScreeningObjectMapper extends ObjectMapper
...@@ -31,7 +33,7 @@ public class ScreeningObjectMapper extends ObjectMapper ...@@ -31,7 +33,7 @@ public class ScreeningObjectMapper extends ObjectMapper
{ {
setAnnotationIntrospector(new JsonTypeAndClassAnnotationIntrospector( setAnnotationIntrospector(new JsonTypeAndClassAnnotationIntrospector(
new ScreeningJsonClassValueToClassObjectsMapping())); new ScreeningJsonClassValueToClassObjectsMapping()));
setSubtypeResolver(new JsonReflectionsSubTypeResolver()); setSubtypeResolver(JsonReflectionsSubTypeResolver.getDefaultInstance());
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment