validation and expiration splitted

This commit is contained in:
lucio 2024-10-28 13:48:31 +01:00
parent ab22bc3958
commit 4aca393905
5 changed files with 7 additions and 6 deletions

View File

@ -13,7 +13,7 @@
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>

View File

@ -1,8 +1,8 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.codegen.targetPlatform=11
org.eclipse.jdt.core.compiler.compliance=11
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore
org.eclipse.jdt.core.compiler.release=disabled
org.eclipse.jdt.core.compiler.source=1.8
org.eclipse.jdt.core.compiler.source=11

View File

@ -3,7 +3,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
# Changelog for Gcube security
## [v1.0.0] - 2022-05-23
## [v1.0.0-SNAPSHOT]
- First Release

View File

@ -11,7 +11,7 @@
<groupId>org.gcube.common</groupId>
<artifactId>common-security</artifactId>
<version>1.0.0</version>
<version>1.0.0-SNAPSHOT</version>
<name>gcube security</name>
<scm>

View File

@ -17,4 +17,5 @@ public abstract class Secret {
public abstract boolean isValid();
public abstract boolean isExpired();
}