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

io.quarkus.dev.spi.RemoteDevState Maven / Gradle / Ivy

There is a newer version: 3.17.0
Show newest version
package io.quarkus.dev.spi;

import java.io.Serializable;
import java.util.Map;

public class RemoteDevState implements Serializable {
    final Map fileHashes;
    final Throwable throwable;

    public RemoteDevState(Map fileHashes, Throwable throwable) {
        this.fileHashes = fileHashes;
        this.throwable = throwable;
    }

    public Map getFileHashes() {
        return fileHashes;
    }

    public Throwable getAugmentProblem() {
        return throwable;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy