001package org.syncany.plugins.transfer.oauth;
002
003/**
004 * OAuth basically provides two different types of implicit grant. One is used by clients to directly acquire an Access token (often with
005 * a very short lifetime) to perform different API actions. The second mode is used by server and requires a separate step to transform an
006 * Authorization token into an actual Access token. Syncany supports both modes out of the box.
007 *
008 * @author Christian Roth (christian.roth@port17.de)
009 */
010
011public enum OAuthMode {
012        BROWSER,
013        SERVER
014}