seb-server/src/main/java/ch/ethz/seb/sebserver/webservice/DBIntegrityCheck.java

29 lines
940 B
Java
Raw Normal View History

/*
* Copyright (c) 2021 ETH Zürich, Educational Development and Technology (LET)
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package ch.ethz.seb.sebserver.webservice;
import ch.ethz.seb.sebserver.gbl.util.Result;
2021-09-28 17:14:08 +02:00
/** Defines a data base integrity check and fix if available. */
public interface DBIntegrityCheck {
2021-09-28 17:14:08 +02:00
/** The name of the database integrity check */
String name();
2021-09-28 17:14:08 +02:00
/** The description of the database integrity check */
String description();
2021-09-28 17:14:08 +02:00
/** Apply the check and fix it if not correct and a fix id provided
*
* @param tryFix indicates if a fix shall be applied if the check fails and a fix is implemented
* @return check result message */
Result<String> applyCheck(boolean tryFix);
}