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

org.glassfish.jersey.server.oauth1.OAuth1ServerProperties Maven / Gradle / Ivy

There is a newer version: 2.22.2
Show newest version
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 2013-2014 Oracle and/or its affiliates. All rights reserved.
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License.  You can
 * obtain a copy of the License at
 * http://glassfish.java.net/public/CDDL+GPL_1_1.html
 * or packager/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 *
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at packager/legal/LICENSE.txt.
 *
 * GPL Classpath Exception:
 * Oracle designates this particular file as subject to the "Classpath"
 * exception as provided by Oracle in the GPL Version 2 section of the License
 * file that accompanied this code.
 *
 * Modifications:
 * If applicable, add the following below the License Header, with the fields
 * enclosed by brackets [] replaced by your own identifying information:
 * "Portions Copyright [year] [name of copyright owner]"
 *
 * Contributor(s):
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 */

package org.glassfish.jersey.server.oauth1;

import java.util.Map;

import org.glassfish.jersey.internal.util.PropertiesClass;
import org.glassfish.jersey.internal.util.PropertiesHelper;

/**
 * Properties used to configure OAuth server module.
 *
 * @author Miroslav Fuksa (miroslav.fuksa at oracle.com)
 */
@PropertiesClass
public final class OAuth1ServerProperties {
    /**
     * OAuth realm (String property).
     *
     * 

* A default value is {@code 'default'}. *

* *

* The name of the configuration property is {@value}. *

**/ public static final String REALM = "jersey.config.server.oauth1.realm"; /** * Property that can be set to a regular expression used to match the path (relative to the base URI) this * filter should not be applied to. *

* A default value is {@code null}. *

* *

* The name of the configuration property is {@value}. *

**/ public static final String IGNORE_PATH_PATTERN = "jersey.config.server.oauth1.ignorePathPattern"; /** * Property defines maximum age (in milliseconds) of nonces that should be tracked (default = 300000 ms = 5 min). * *

* A default value is {@code 300000} which corresponds to 5 minutes. *

* *

* The name of the configuration property is {@value}. *

* **/ public static final String MAX_AGE = "jersey.config.server.oauth1.maxAge"; /** * Property that can be set to frequency of collecting nonces exceeding max. age (default = 100 = every 100 requests). * **/ public static final String GC_PERIOD = "jersey.config.server.oauth1.gcPeriod"; /** * Unit of {@code oauth_timestamp} attribute used in authorization headers. The value must be one of the * enum values of {@link java.util.concurrent.TimeUnit} (e.g. {@code SECONDS}, * {@code MILLISECONDS}, {@code MINUTES}). *

* A default value is {@code SECONDS}. *

* *

* The name of the configuration property is {@value}. *

*/ public static final String TIMESTAMP_UNIT = "jersey.config.server.oauth1.timestamp.unit"; /** * Defines maximum number of nonces that can be stored in the nonce cache. If more nonces will be used, * the cache will not store any other nonce and requests will be refused. Note that cache is automatically * cleaned as it keeps only nonces delivered with timestamp withing the {@link #MAX_AGE} period. *

* This setting is used to limit the maximum size of internal cache and thanks to this * it prevents exhausting of memory and failing of the server. *

* *

* The value must be a long. *

*

* A default value is {@code 2000000}. *

* *

* The name of the configuration property is {@value}. *

* */ public static final String MAX_NONCE_CACHE_SIZE = "jersey.config.server.oauth1.max.nonce.size"; /** * If set to {@code true} makes the correct OAuth authentication optional. * Instead of returning the appropriate status code * ({@link javax.ws.rs.core.Response.Status#BAD_REQUEST} * or {@link javax.ws.rs.core.Response.Status#UNAUTHORIZED}) the {@link OAuth1ServerFilter OAuth filter} * will ignore this request (as if it was not authenticated) and let the web application deal with it. * *

* A default value is {@code false}. *

* *

* The name of the configuration property is {@value}. *

* */ public static final String NO_FAIL = "jersey.config.server.oauth1.noFail"; /** * If set to {@code true}, token resources will be exposed. Token resources are JAX-RS resources * for retrieving Request Tokens and Access Tokens. If the property is set to {@code false}, * the resources will not be exposed and it is responsibility of the user custom resource to issue * Request Tokens and Access Tokens. *

* URIs of exposed resources can be specified by {@link #REQUEST_TOKEN_URI} and {@link #ACCESS_TOKEN_URI}. *

* *

* A default value is {@code true}. *

*

* The name of the configuration property is {@value}. *

*/ public static final String ENABLE_TOKEN_RESOURCES = "jersey.config.server.oauth1.resource.enabled"; /** * If exposure of token resources is enabled (e.g. by the property {@link #ENABLE_TOKEN_RESOURCES}), * this property defines the relative URI of exposed Request Token Resource. The URI must be relative * to the base URI of the JAX-RS application. *

* Request Token resource is the resource which issues a Request Token and Request Token secret * during the Authorization process (temporary credentials IDs). * *

* The property is undefined by default. *

*

* The name of the configuration property is {@value}. *

*/ public static final String REQUEST_TOKEN_URI = "jersey.config.server.oauth1.resource.requestToken.uri"; /** * If exposure of token resources is enabled (e.g. by the property {@link #ENABLE_TOKEN_RESOURCES}), * this property defines the relative URI of exposed Access Token Resource. The URI must be relative * to the base URI of the JAX-RS application. *

* Access Token resource is the resource which issues a Access Token and Access Token secret * during the Authorization process. * *

* The property is undefined by default. *

*

* The name of the configuration property is {@value}. *

*/ public static final String ACCESS_TOKEN_URI = "jersey.config.server.oauth1.resource.accessToken.uri"; /** * Get the value of the specified property. * * If the property is not set or the real value type is not compatible with the specified value type, * returns {@code null}. * * @param properties Map of properties to get the property value from. * @param key Name of the property. * @param type Type to retrieve the value as. * @param Type of the property value. * @return Value of the property or {@code null}. * * @since 2.8 */ public static T getValue(Map properties, String key, Class type) { return PropertiesHelper.getValue(properties, key, type, null); } /** * Get the value of the specified property. * * If the property is not set or the real value type is not compatible with {@code defaultValue} type, * the specified {@code defaultValue} is returned. Calling this method is equivalent to calling * {@code OAuth1ServerProperties.getValue(properties, key, defaultValue, (Class) defaultValue.getClass())} * * @param properties Map of properties to get the property value from. * @param key Name of the property. * @param defaultValue Default value if property is not registered * @param Type of the property value. * @return Value of the property or {@code null}. * * @since 2.8 */ public static T getValue(Map properties, String key, T defaultValue) { return PropertiesHelper.getValue(properties, key, defaultValue, null); } /** * Get the value of the specified property. * * If the property is not set or the real value type is not compatible with the specified value type, * returns {@code defaultValue}. * * @param properties Map of properties to get the property value from. * @param key Name of the property. * @param defaultValue Default value if property is not registered * @param type Type to retrieve the value as. * @param Type of the property value. * @return Value of the property or {@code null}. * * @since 2.8 */ public static T getValue(Map properties, String key, T defaultValue, Class type) { return PropertiesHelper.getValue(properties, key, defaultValue, type, null); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy