* {@link com.cloudcontrolled.api.response.normalize.JSONNormalizer}
* object.
*/
@SuppressWarnings("unchecked")
public static <T> JSONNormalizer getJSONStandardizer(Response<T> response) {
JSONNormalizer standardizer = new JSONNormalizer();
Class<JSONNormalizer> standardizerClazz = ClassUtil.getClassAnnotationValue(response.getClass(), Normalized.class, "value", Class.class);
if (standardizerClazz != null) {
try {
standardizer = standardizerClazz.newInstance();
} catch (InstantiationException e) {