2021-06-16 13:27:58 +02:00
|
|
|
/*
|
|
|
|
* 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. */
|
2021-06-16 13:27:58 +02:00
|
|
|
public interface DBIntegrityCheck {
|
|
|
|
|
2021-09-28 17:14:08 +02:00
|
|
|
/** The name of the database integrity check */
|
2021-06-16 13:27:58 +02:00
|
|
|
String name();
|
|
|
|
|
2021-09-28 17:14:08 +02:00
|
|
|
/** The description of the database integrity check */
|
2021-06-16 13:27:58 +02:00
|
|
|
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 */
|
2021-06-16 13:27:58 +02:00
|
|
|
Result<String> applyCheck(boolean tryFix);
|
|
|
|
|
|
|
|
}
|