Skip to content
Snippets Groups Projects

Migrate to reactive and SDK 1.1.6, currently snapshot

Merged Martin Lowe requested to merge malowe/main/sdk-1.1.5-update into main
Files
39
/*********************************************************************
* 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: Zachary Sabourin <zachary.sabourin@eclipse-foundation.org>
*
* SPDX-License-Identifier: EPL-2.0
**********************************************************************/
package org.eclipsefoundation.profile.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;
/**
* A Runtime annotation used to allow full blocking on some endpoints, while allowing a partial profile responses.
*/
@Retention(RUNTIME)
@Target(METHOD)
public @interface Authenticated {
boolean allowPartialResponse() default false;
}
Loading