I am using org.codehaus.jackson.map.ObjectMapper to deserialize json data sent a client. But client is sending class definition in the JSON. Is there a way to ignore class definition info in the json and convert it to required Java Bean using ObjectMapper.
Note : Could not fix client code or define a class with same package structure as sent by client in the server side due to cross release supports. So finding a easy way to ignore class definition in the payload and convert it to required java bean as per server side impl.