001/*
002 * flattr4j - A Java library for Flattr
003 *
004 * Copyright (C) 2011 Richard "Shred" Körber
005 *   http://flattr4j.shredzone.org
006 *
007 * This program is free software: you can redistribute it and/or modify
008 * it under the terms of the GNU General Public License / GNU Lesser
009 * General Public License as published by the Free Software Foundation,
010 * either version 3 of the License, or (at your option) any later version.
011 *
012 * Licensed under the Apache License, Version 2.0 (the "License");
013 * you may not use this file except in compliance with the License.
014 *
015 * This program is distributed in the hope that it will be useful,
016 * but WITHOUT ANY WARRANTY; without even the implied warranty of
017 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
018 */
019package org.shredzone.flattr4j.oauth;
020
021/**
022 * Scope of rights the consumer requests from the user.
023 *
024 * @author Richard "Shred" Körber
025 */
026public enum Scope {
027
028    /**
029     * The consumer wants to flattr things.
030     *
031     * @since 2.0
032     */
033    FLATTR,
034
035    /**
036     * The consumer wants to create, update and delete things.
037     *
038     * @since 2.0
039     */
040    THING,
041
042    /**
043     * The consumer wants to read the user's email address.
044     *
045     * @since 2.2
046     */
047    EMAIL,
048
049    /**
050     * The application has read access, plus access to private user information and hidden
051     * things for the authenticated user.
052     */
053    EXTENDEDREAD
054
055}