io.github.eliux.mega.auth.MegaAuth 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 io.github.eliux.mega.auth;
import io.github.eliux.mega.MegaSession;
import io.github.eliux.mega.error.MegaLoginException;
/**
* Abstraction of authentication mechanisms, used to provide an strategy
* of creating a MEGA session.
*/
public abstract class MegaAuth {
abstract public MegaSession login() throws MegaLoginException;
}