com.azure.core.annotation.Fluent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-core Show documentation
Show all versions of azure-core Show documentation
This package contains core types for Azure Java clients.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.core.annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.SOURCE;
/**
* Annotation given to all classes that are expected to provide a fluent API to end users. If a class has this
* annotation, checks can be made to ensure all API meets this expectation. Similarly, classes that are not annotated
* with this annotation should not have fluent APIs.
*/
@Retention(SOURCE)
@Target(TYPE)
public @interface Fluent {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy