Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7bc76f7e authored by Vincent Bourgmayer's avatar Vincent Bourgmayer
Browse files

remove ComparableOperation.java interface

parent 822f07ac
Loading
Loading
Loading
Loading
+0 −18
Original line number Diff line number Diff line
package foundation.e.drive.operations;

import com.owncloud.android.lib.common.operations.RemoteOperation;

public interface ComparableOperation {

    /**
     * Say if File affected by operation is a media or a settings
     * @return
     */
    public boolean isMediaType();

    /**
     * Cast instance to generic remoteOperation Type
     * @return RemoteOperation this instance
     */
    public RemoteOperation toRemoteOperation();
}