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

org.wildfly.plugin.dev.WatchContext Maven / Gradle / Ivy

Go to download

A maven plugin that allows various management operations to be executed on WildFly Application Server.

There is a newer version: 5.1.1.Final
Show newest version
/*
 * Copyright The WildFly Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.wildfly.plugin.dev;

import java.io.IOException;
import java.nio.file.Path;
import java.nio.file.WatchEvent;

import org.apache.maven.plugin.MojoExecutionException;

/**
 * @author James R. Perkins
 */
class WatchContext implements Comparable {
    private final Path directory;
    private final WatchHandler handler;

    private WatchContext(final Path directory, final WatchHandler handler) {
        this.directory = directory;
        this.handler = handler;
    }

    static WatchContext of(final Path directory, final WatchHandler handler) {
        return new WatchContext(directory, handler);
    }

    Path directory() {
        return directory;
    }

    WatchHandler handler() {
        return handler;
    }

    // TODO (jrp) should this just go away?
    WatchHandler.Result handle(final WatchEvent event, final Path file) throws MojoExecutionException, IOException {
        return handler.handle(this, event, directory.resolve(file));
    }

    @Override
    public int compareTo(final WatchContext o) {
        return directory().compareTo(o.directory());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy