Package org.openbravo.service.system

Examples of org.openbravo.service.system.SystemValidationResult


   */
  public void testSystemValidation() {
    setUserContext("0");
    final DatabaseValidator databaseValidator = new DatabaseValidator();
    databaseValidator.setDatabase(createDatabaseObject());
    final SystemValidationResult result = databaseValidator.validate();
    printResult(result);
  }
View Full Code Here


   * Performs module validation using the {@link ModuleValidator}.
   */
  public void testModulesValidation() {
    setUserContext("0");
    final ModuleValidator moduleValidator = new ModuleValidator();
    final SystemValidationResult result = moduleValidator.validate();
    printResult(result);
  }
View Full Code Here

TOP

Related Classes of org.openbravo.service.system.SystemValidationResult

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.