All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.bdeploy.common.cfg.MinionRootValidator Maven / Gradle / Ivy

Go to download

Public API including dependencies, ready to be used for integrations and plugins.

There is a newer version: 7.3.6
Show newest version
package io.bdeploy.common.cfg;

import java.nio.file.Files;
import java.nio.file.Path;

import io.bdeploy.common.cfg.Configuration.ValidationMessage;

/**
 * Checks if the given {@link Path} exists and contains either the file etc/state.json or
 * etc/state.json.bak.
 */
@ValidationMessage("Path is not an initialized BDeploy root directory, run 'bdeploy init': %s")
public class MinionRootValidator extends ExistingDirectoryValidator {

    @Override
    public boolean test(String value) {
        return super.test(value) && (isRegularFile("etc/state.json") || isRegularFile("etc/state.json.bak"));
    }

    private boolean isRegularFile(String s) {
        return Files.isRegularFile(p.resolve(s));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy