p013570
p013570
The JsonTypeInfo annotation causes problems with generic types/type erasure. We have a temporary solution that adds a class property to Element and ElementSeed, but it isn't very nice.
To be done after #1179. If a user asks for only a subset of properties to be returned in a query we should be able to skip deserialising them. This...
Given a jobId of an operation chain, can we stop the operation chain from executing?
Before computing integer1+integer2 we should check that the maximum will not be more than Integer.MAX_VALUE. See below for suggested solution.
Currently if you deserialise: ```json { "class": "uk.gov.gchq.koryphe.impl.predicate.IsMoreThan", "value": 1512381090096 } ``` it will throw an exception saying 1512381090096 is bigger than MAX integer. It should use Long by default....