All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.osiam.client.oauth.Scope Maven / Gradle / Ivy

There is a newer version: 1.9
Show newest version
/*
 * Copyright (C) 2013 tarent AG
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

package org.osiam.client.oauth;

import org.osiam.resources.scim.User;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Scope represents an OAuth 2.0 scope.
 * 

* Scopes defined by OSIAM are available as static constants of this class, e.g. {@link Scope#ME}. *

*/ public class Scope { public static final Scope GET = new Scope("GET"); public static final Scope POST = new Scope("POST"); public static final Scope PUT = new Scope("PUT"); public static final Scope PATCH = new Scope("PATCH"); public static final Scope DELETE = new Scope("DELETE"); public static final Scope ALL = new Scope(Scope.GET + " " + Scope.POST + " " + Scope.PUT + " " + Scope.PATCH + " " + Scope.DELETE); /** * {@code ME} is a scope that allows read and write access to the data of the user associated with the access token. *

* This includes: *

    *
  • Retrieving the complete {@link User} resource
  • *
  • Modifying all attributes of the {@link User} resource
  • *
  • Deleting the {@link User} resource
  • *
  • Revoking the access tokens of the {@link User}
  • *
  • Access the {@code /me} resource
  • *
  • Validate the access token
  • *
* Note that this only works with a user-bound access token, i.e. a token with scope {@code ME} that has been * retrieved via client credentials grant CANNOT access any user's data. *

*/ public static final Scope ME = new Scope("ME"); /** * {@code ADMIN} is a scope that allows full access to any resource. */ public static final Scope ADMIN = new Scope("ADMIN"); private String value; public Scope(String value) { this.value = value; } @JsonProperty public String getValue() { return value; } @Override public String toString() { return value; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((value == null) ? 0 : value.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } Scope other = (Scope) obj; if (value == null) { if (other.value != null) { return false; } } else if (!value.equals(other.value)) { return false; } return true; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy