updated copyright

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2025-03-25 11:00:11 +01:00
parent ee6b48d4e4
commit 20f5d0efcf
56 changed files with 56 additions and 56 deletions

View File

@@ -1,4 +1,4 @@
/* © SRSoftware 2024 */
/* © SRSoftware 2025 */
package de.srsoftware.oidc.api;
import de.srsoftware.oidc.api.data.AuthResult;

View File

@@ -1,4 +1,4 @@
/* © SRSoftware 2024 */
/* © SRSoftware 2025 */
package de.srsoftware.oidc.api;
import de.srsoftware.oidc.api.data.Client;

View File

@@ -1,4 +1,4 @@
/* © SRSoftware 2024 */
/* © SRSoftware 2025 */
package de.srsoftware.oidc.api;

View File

@@ -1,4 +1,4 @@
/* © SRSoftware 2024 */
/* © SRSoftware 2025 */
package de.srsoftware.oidc.api;
import java.io.IOException;

View File

@@ -1,4 +1,4 @@
/* © SRSoftware 2024 */
/* © SRSoftware 2025 */
package de.srsoftware.oidc.api;
import java.io.IOException;

View File

@@ -1,4 +1,4 @@
/* © SRSoftware 2024 */
/* © SRSoftware 2025 */
package de.srsoftware.oidc.api;
import static de.srsoftware.oidc.api.Constants.*;

View File

@@ -1,4 +1,4 @@
/* © SRSoftware 2024 */
/* © SRSoftware 2025 */
package de.srsoftware.oidc.api;
import java.util.Optional;

View File

@@ -1,4 +1,4 @@
/* © SRSoftware 2024 */
/* © SRSoftware 2025 */
package de.srsoftware.oidc.api;
import de.srsoftware.oidc.api.data.Session;

View File

@@ -1,4 +1,4 @@
/* © SRSoftware 2024 */
/* © SRSoftware 2025 */
package de.srsoftware.oidc.api;
import static java.util.Optional.empty;

View File

@@ -1,4 +1,4 @@
/* © SRSoftware 2024 */
/* © SRSoftware 2025 */
package de.srsoftware.oidc.api.data;
import java.time.Instant;

View File

@@ -1,4 +1,4 @@
/* © SRSoftware 2024 */
/* © SRSoftware 2025 */
package de.srsoftware.oidc.api.data;
import java.util.Set;

View File

@@ -1,4 +1,4 @@
/* © SRSoftware 2024 */
/* © SRSoftware 2025 */
package de.srsoftware.oidc.api.data;
public record Authorization(String clientId, String userId, AuthorizedScopes scopes) {

View File

@@ -1,4 +1,4 @@
/* © SRSoftware 2024 */
/* © SRSoftware 2025 */
package de.srsoftware.oidc.api.data;
import java.time.Instant;

View File

@@ -1,4 +1,4 @@
/* © SRSoftware 2024 */
/* © SRSoftware 2025 */
package de.srsoftware.oidc.api.data;

View File

@@ -1,4 +1,4 @@
/* © SRSoftware 2024 */
/* © SRSoftware 2025 */
package de.srsoftware.oidc.api.data;
import java.time.Instant;

View File

@@ -1,4 +1,4 @@
/* © SRSoftware 2024 */
/* © SRSoftware 2025 */
package de.srsoftware.oidc.api.data;
public enum Permission { MANAGE_CLIENTS, MANAGE_PERMISSIONS, MANAGE_SMTP, MANAGE_USERS }

View File

@@ -1,4 +1,4 @@
/* © SRSoftware 2024 */
/* © SRSoftware 2025 */
package de.srsoftware.oidc.api.data;
import java.time.Instant;

View File

@@ -1,4 +1,4 @@
/* © SRSoftware 2024 */
/* © SRSoftware 2025 */
package de.srsoftware.oidc.api.data;
import static de.srsoftware.oidc.api.Constants.EMAIL;

View File

@@ -1,4 +1,4 @@
/* © SRSoftware 2024 */
/* © SRSoftware 2025 */
package de.srsoftware.oidc.api;
import static de.srsoftware.oidc.api.Constants.OPENID;

View File

@@ -1,4 +1,4 @@
/* © SRSoftware 2024 */
/* © SRSoftware 2025 */
package de.srsoftware.oidc.api;
import static de.srsoftware.tools.Strings.uuid;

View File

@@ -1,4 +1,4 @@
/* © SRSoftware 2024 */
/* © SRSoftware 2025 */
package de.srsoftware.oidc.api;
import static de.srsoftware.oidc.api.Constants.EXPIRATION;

View File

@@ -1,4 +1,4 @@
/* © SRSoftware 2024 */
/* © SRSoftware 2025 */
package de.srsoftware.oidc.api;
import static de.srsoftware.oidc.api.Constants.*;

View File

@@ -1,4 +1,4 @@
/* © SRSoftware 2024 */
/* © SRSoftware 2025 */
package de.srsoftware.oidc.api;
import static de.srsoftware.tools.Strings.uuid;

View File

@@ -1,4 +1,4 @@
/* © SRSoftware 2024 */
/* © SRSoftware 2025 */
package de.srsoftware.oidc.api;
import static de.srsoftware.oidc.api.data.Permission.*;