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

com.thegoate.logging.volume.amp.BasicAmplifier Maven / Gradle / Ivy

There is a newer version: 0.15.17.202312051550
Show newest version
package com.thegoate.logging.volume.amp;

import com.thegoate.Goate;
import com.thegoate.utils.Utility;

/**
 * Created by Eric Angeli on 7/1/2020.
 */
public abstract class BasicAmplifier implements Amplifier{

	Object message;
	Goate data;
	Goate health = new Goate();

	public BasicAmplifier(Object message){
		this.message = message;
	}

	@Override
	public Utility setData(Goate data) {
		return this;
	}

	@Override
	public Goate healthCheck() {
		return health;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy