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

net.bottegaio.agent.service.ssh.SshService Maven / Gradle / Ivy

The newest version!
package net.bottegaio.agent.service.ssh;

import net.bottegaio.agent.service.GeneralService;
import net.bottegaio.agent.storage.StorageManager;

public class SshService extends GeneralService {

	public SshService(final SshServiceConfig configService, final StorageManager storageManager) {
		super(configService, storageManager);
	}

	@Override
	protected void faultEvent() {
		// TODO implementare il metodo faultEvent

	}

	@Override
	protected void initEvent() {
		// TODO implementare il metodo initEvent

	}

	@Override
	protected void initJob() {
		// TODO implementare il metodo initJob

	}

	@Override
	protected void readyEvent() {
		// TODO implementare il metodo readyEvent

	}

	@Override
	protected void runningEvent() {
		// TODO implementare il metodo runningEvent

	}

	@Override
	protected void startingEvent() {
		// TODO implementare il metodo startingEvent

	}

	@Override
	protected void startJob() {
		// TODO implementare il metodo startJob

	}

	@Override
	protected void stopJob() {
		// TODO implementare il metodo stopJob

	}

	@Override
	protected void terminateEvent() {
		// TODO implementare il metodo terminateEvent

	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy