Reduce to 24 compiler errors

This commit is contained in:
2025-08-02 13:25:22 +02:00
parent 598daadd33
commit fb518efe63
7 changed files with 109 additions and 47 deletions
@@ -0,0 +1,56 @@
/*
* This file is a part of the SteamWar software.
*
* Copyright (C) 2020 SteamWar.de-Serverteam
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.steamwar.bausystem.region;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
import java.util.List;
import java.util.Optional;
public interface RegionBackups {
@RequiredArgsConstructor
enum BackupType {
MANUAL(5),
AUTOMATIC(20),
;
private final int maxBackups;
}
@RequiredArgsConstructor
@Getter
abstract class Backup {
private final BackupType type;
private final String name;
private final FlagStorage flags;
public abstract boolean load();
public abstract void delete();
}
Optional<Backup> create(BackupType backupType);
List<Backup> list();
Backup get(String name);
}