Deprecated AccessTokenProvider, AuthorizationProvider and
SecurityTokenProvider
This commit is contained in:
parent
9b0ad437a5
commit
bb505b905c
|
@ -4,6 +4,10 @@
|
|||
All notable changes to this project will be documented in this file.
|
||||
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [v2.5.0-SNAPSHOT]
|
||||
|
||||
Deprecated AccessTokenProvider, AuthorizationProvider and SecurityTokenProvider
|
||||
|
||||
## [v2.4.0] - [2021-05-21]
|
||||
|
||||
JWTUmaTokenProvider changed to AccessTokenProvider
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -3,7 +3,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.gcube.common</groupId>
|
||||
<artifactId>common-authorization</artifactId>
|
||||
<version>2.4.0</version>
|
||||
<version>2.5.0-SNAPSHOT</version>
|
||||
<name>authorization service common library</name>
|
||||
|
||||
<parent>
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
package org.gcube.common.authorization.library.provider;
|
||||
|
||||
@Deprecated
|
||||
public class AccessTokenProvider {
|
||||
|
||||
public static AccessTokenProvider instance = new AccessTokenProvider();
|
||||
|
|
|
@ -2,6 +2,7 @@ package org.gcube.common.authorization.library.provider;
|
|||
|
||||
import org.gcube.common.authorization.library.utils.Caller;
|
||||
|
||||
@Deprecated
|
||||
public class AuthorizationProvider {
|
||||
|
||||
public static AuthorizationProvider instance = new AuthorizationProvider();
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package org.gcube.common.authorization.library.provider;
|
||||
|
||||
|
||||
@Deprecated
|
||||
public class SecurityTokenProvider {
|
||||
|
||||
public static SecurityTokenProvider instance = new SecurityTokenProvider();
|
||||
|
|
Loading…
Reference in New Issue