String className = LocalUtil.decode(data.getValue());
try {
Assert.isEncrypted(decipherer, className);
return ClassUtils.forName(decipherer.decrypt(className));
} catch (Exception cne) {
throw new MarshallException(paramType, new IWebMvcException("Could not convert class from: " + className, cne));
}
}