io.rxmicro.rest.method.OPTIONS Maven / Gradle / Ivy
Show all versions of rxmicro-rest Show documentation
/*
* Copyright (c) 2020. https://rxmicro.io
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.rxmicro.rest.method;
import java.lang.annotation.Documented;
import java.lang.annotation.Repeatable;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.SOURCE;
/**
* Annotation that can be applied to method to signify the method receives a OPTIONS request.
*
*
* See
*
* https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.2
*
*
* @author nedis
* @see DELETE
* @see GET
* @see HEAD
* @see PATCH
* @see POST
* @see PUT
* @see io.rxmicro.rest.model.HttpMethod
* @see HttpMethods
* @since 0.1
*/
@Documented
@Retention(SOURCE)
@Target(METHOD)
@Repeatable(OPTIONS.List.class)
public @interface OPTIONS {
/**
* Returns the URI of the route.
*
* @return the URI of the route
*/
String value();
/**
* Defines several {@link OPTIONS} annotations on the same element.
*
* @author nedis
* @since 0.1
*/
@Documented
@Retention(SOURCE)
@Target(METHOD)
@interface List {
/**
* Returns the several {@link OPTIONS} annotations on the same element.
*
* @return the several {@link OPTIONS} annotations on the same element.
*/
OPTIONS[] value();
}
}