de.eldoria.eldoutilities.debug.data.DebugResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of debugging Show documentation
Show all versions of debugging Show documentation
Utilitites for debugging plugins
/*
* SPDX-License-Identifier: LGPL-3.0-or-later
*
* Copyright (C) EldoriaRPG Team and Contributor
*/
package de.eldoria.eldoutilities.debug.data;
/**
* Response of UpdateButler.
*/
public class DebugResponse {
private final String hash;
private final String deletionHash;
public DebugResponse(String hash, String deletionHash) {
this.hash = hash;
this.deletionHash = deletionHash;
}
public String getHash() {
return hash;
}
public String getDeletionHash() {
return deletionHash;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy