All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.javawebstack.httpserver.router.annotation.verbs.Delete Maven / Gradle / Ivy

Go to download

This library provides a routing and request mapping stack on top of the well known and industry proven eclipse jetty http server. It also supports websockets.

The newest version!
package org.javawebstack.httpserver.router.annotation.verbs;

import java.lang.annotation.*;

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
@Repeatable(Delete.Multiple.class)
public @interface Delete {
    String value() default "/";

    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.METHOD)
    @interface Multiple {
        Delete[] value();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy