public VOListResponse updateDocumentTypes(ArrayList oldVOs,ArrayList newVOs,String serverLanguageId,String username,ArrayList customizedFields) throws Throwable {
Connection conn = null;
try {
if (this.conn==null) conn = getConn(); else conn = this.conn;
DocumentTypeVO oldVO = null;
DocumentTypeVO newVO = null;
for(int i=0;i<oldVOs.size();i++) {
oldVO = (DocumentTypeVO)oldVOs.get(i);
newVO = (DocumentTypeVO)newVOs.get(i);
// update root description...
CompanyTranslationUtils.updateTranslation(
newVO.getCompanyCodeSys01DOC16(),
oldVO.getDescriptionSYS10(),
newVO.getDescriptionSYS10(),
newVO.getProgressiveSys10DOC16(),
serverLanguageId,
username,
conn
);
}