I am trying to implement deserialization to parse json object as a string, but my custom deserializable class is not being called.
JSON which needs to be parsed
{
 "status": true,
 "student": [
    {
        "id": 1,
        "name": "",
        "age": "",
         "title": "",
    }
]
}
My Deserializable class
public class MyDeserializer implements JsonDeserializer<StudentData> {
@Override
public StudentData deserialize(JsonElement je, Type type, JsonDeserializationContext jdc) {
    try {
        String content = je.getAsJsonObject().get("student").getAsString();
        return new Gson().fromJson(content, StudentData)
    } catch (Exception e) {
        e.printStackTrace();
        return null;
    }
}
}
Register my deserializer:-
MyDeserializer myDeserializer = new MyDeserializer();
Gson gson = new GsonBuilder().registerTypeAdapter(NotificationResponse.class, myDeserializer).create();
mRestAdapter = new RestAdapter.Builder().setServer(baseUrl).setConverter(new GsonConverter(gson)).setLogLevel(RestAdapter.LogLevel.FULL).setRequestInterceptor(new RequestInterceptor() 
             {
                @Override
                public void intercept(RequestFacade requestFacade) {
                }
            }).build();
 
     
     
    