![JAR search and dependency download from the Maven repository](/logo.png)
com.imsweb.validation.translation.EditTranslationResult Maven / Gradle / Ivy
/*
* Copyright (C) 2016 Information Management Services, Inc.
*/
package com.imsweb.validation.translation;
import java.util.Map;
public class EditTranslationResult {
private String _groovy;
// keys are the table names, values are the indexes; fore each index: keys are the index names, values are the list of columns they use
private Map _usedTablesAndIndexes;
private String _translationErrorMessage;
public String getGroovy() {
return _groovy;
}
public void setGroovy(String groovy) {
_groovy = groovy;
}
public Map getUsedTablesAndIndexes() {
return _usedTablesAndIndexes;
}
public void setUsedTablesAndIndexes(Map usedTablesAndIndexes) {
_usedTablesAndIndexes = usedTablesAndIndexes;
}
public String getTranslationErrorMessage() {
return _translationErrorMessage;
}
public void setTranslationErrorMessage(String translationErrorMessage) {
_translationErrorMessage = translationErrorMessage;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy