com.github.eliux.mega.cmd.AbstractMegaCmd Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of megacmd4j Show documentation
Show all versions of megacmd4j Show documentation
Java client library that works on top of MEGAcmd to provide access to the services of Mega.nz
package com.github.eliux.mega.cmd;
import com.github.eliux.mega.platform.OSPlatform;
public abstract class AbstractMegaCmd {
protected String executableCommand() {
return getCmdAdaptedToPlatform();
}
protected String getCmdAdaptedToPlatform() {
return OSPlatform.getCurrent().cmdInstruction(getCmd());
}
public abstract String getCmd();
}