
org.swiftboot.web.config.ValidationResultConfigBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swiftboot-web Show documentation
Show all versions of swiftboot-web Show documentation
Basic module for enterprise web applications
package org.swiftboot.web.config;
/**
* @author swiftech
**/
public class ValidationResultConfigBean {
/**
* 是否以 JSON 格式返回验证结果,默认为 true
*/
private boolean resultInJson = true;
public boolean isResultInJson() {
return resultInJson;
}
public void setResultInJson(boolean resultInJson) {
this.resultInJson = resultInJson;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy