Skip to content
Snippets Groups Projects

Update our random secure resource key impl and rt logging level updates

Merged Martin Lowe requested to merge malowe/eclipsefdn-api-common:malowe/main/76 into main
12 files
+ 464
76
Compare changes
  • Side-by-side
  • Inline
Files
12
 
/**
 
* Copyright (c) 2023 Eclipse Foundation
 
*
 
* This program and the accompanying materials are made
 
* available under the terms of the Eclipse Public License 2.0
 
* which is available at https://www.eclipse.org/legal/epl-2.0/
 
*
 
* Author: Martin Lowe <martin.lowe@eclipse-foundation.org>
 
*
 
* SPDX-License-Identifier: EPL-2.0
 
*/
 
package org.eclipsefoundation.core.annotations;
 
 
import static java.lang.annotation.ElementType.METHOD;
 
import static java.lang.annotation.RetentionPolicy.RUNTIME;
 
 
import java.lang.annotation.Retention;
 
import java.lang.annotation.Target;
 
 
/**
 
* Annotation used to annote a resource endpoint as secured by a random key generated at runtime for low risk endpoints that need
 
* a user guard.
 
*/
 
@Retention(RUNTIME)
 
@Target(METHOD)
 
public @interface KeySecured {
 
 
}
Loading