Added remove() method in SecretManagerProvider
This commit is contained in:
parent
3e91121f09
commit
f06166a6ff
|
@ -1,6 +1,11 @@
|
|||
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
# Changelog for Authorization utils
|
||||
# Changelog for Authorization Utils
|
||||
|
||||
## [v2.1.0-SNAPSHOT]
|
||||
|
||||
- Added remove() method in SecretManagerProvider
|
||||
- Enhanced gcube-bom version
|
||||
|
||||
## [v2.0.0]
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ N/A
|
|||
|
||||
## Change log
|
||||
|
||||
See [Releases](https://code-repo.d4science.org/gCubeSystem/gcat/releases).
|
||||
See [CHANGELOG.md](CHANGELOG.md).
|
||||
|
||||
## Authors
|
||||
|
||||
|
@ -41,6 +41,7 @@ This project is licensed under the EUPL V.1.1 License - see the [LICENSE.md](LIC
|
|||
|
||||
|
||||
## About the gCube Framework
|
||||
|
||||
This software is part of the [gCubeFramework](https://www.gcube-system.org/ "gCubeFramework"): an
|
||||
open-source software toolkit used for building and operating Hybrid Data
|
||||
Infrastructures enabling the dynamic deployment of Virtual Research Environments
|
||||
|
|
4
pom.xml
4
pom.xml
|
@ -10,7 +10,7 @@
|
|||
|
||||
<groupId>org.gcube.common</groupId>
|
||||
<artifactId>authorization-utils</artifactId>
|
||||
<version>2.0.0</version>
|
||||
<version>2.1.0-SNAPSHOT</version>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
|
@ -27,7 +27,7 @@
|
|||
<dependency>
|
||||
<groupId>org.gcube.distribution</groupId>
|
||||
<artifactId>gcube-bom</artifactId>
|
||||
<version>2.0.2</version>
|
||||
<version>2.1.0</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
|
|
|
@ -36,4 +36,7 @@ public class SecretManagerProvider {
|
|||
thread.remove();
|
||||
}
|
||||
|
||||
public void remove(){
|
||||
thread.remove();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue