for (IDownloadHandler handler : handlersList) {
// Se estiver marcado para ser usado busco as informações do VO
if (pconfig.getPluginBooleanParameter(handler.getClass().getSimpleName(), false)) {
SystemInformation systemInformation = new SystemInformation();
systemInformation.setSystemName(Core.SYSTEM_NAME);
systemInformation.setVersionNumber(Core.VERSION_NUMBER);
handler.setSystemInformation(systemInformation);
try {
DownloadHandlerVO handlerVO = (DownloadHandlerVO) handler.getHandlerVOType().newInstance();
Method[] metodos = handlerVO.getClass().getMethods();
for (Method metodo : metodos) {