Package org.kohsuke.stapler
Interface HttpDeletable
public interface HttpDeletable
Marks the object that can handle HTTP DELETE.
- Author:
- Kohsuke Kawaguchi
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptiondefault void
delete
(StaplerRequest2 req, StaplerResponse2 rsp) Called when HTTP DELETE method is invoked.default void
delete
(StaplerRequest req, StaplerResponse rsp) Deprecated.
-
Method Details
-
delete
default void delete(StaplerRequest2 req, StaplerResponse2 rsp) throws IOException, jakarta.servlet.ServletException Called when HTTP DELETE method is invoked.- Throws:
IOException
jakarta.servlet.ServletException
-
delete
@Deprecated default void delete(StaplerRequest req, StaplerResponse rsp) throws IOException, javax.servlet.ServletException Deprecated.- Throws:
IOException
javax.servlet.ServletException
-
delete(StaplerRequest2, StaplerResponse2)