Skip navigation links
A B C D E G H I L P R S T 

A

add(Task) - Method in class io.dropwizard.servlets.tasks.TaskServlet
 
appendTrailingSlash(URL) - Static method in class io.dropwizard.servlets.assets.ResourceURL
Appends a trailing '/' to a URL object.
AssetServlet - Class in io.dropwizard.servlets.assets
 
AssetServlet(String, String, String, Charset) - Constructor for class io.dropwizard.servlets.assets.AssetServlet
Creates a new AssetServlet that serves static assets loaded from resourceURL (typically a file: or jar: URL).

B

ByteRange - Class in io.dropwizard.servlets.assets
 
ByteRange(int, int) - Constructor for class io.dropwizard.servlets.assets.ByteRange
 

C

CacheBustingFilter - Class in io.dropwizard.servlets
Adds a no-cache header to all responses.
CacheBustingFilter() - Constructor for class io.dropwizard.servlets.CacheBustingFilter
 

D

destroy() - Method in class io.dropwizard.servlets.CacheBustingFilter
 
destroy() - Method in class io.dropwizard.servlets.SlowRequestFilter
 
destroy() - Method in class io.dropwizard.servlets.ThreadNameFilter
 
doFilter(ServletRequest, ServletResponse, FilterChain) - Method in class io.dropwizard.servlets.CacheBustingFilter
 
doFilter(ServletRequest, ServletResponse, FilterChain) - Method in class io.dropwizard.servlets.SlowRequestFilter
 
doFilter(ServletRequest, ServletResponse, FilterChain) - Method in class io.dropwizard.servlets.ThreadNameFilter
 
doGet(HttpServletRequest, HttpServletResponse) - Method in class io.dropwizard.servlets.assets.AssetServlet
 
doGet(HttpServletRequest, HttpServletResponse) - Method in class io.dropwizard.servlets.tasks.TaskServlet
 
doPost(HttpServletRequest, HttpServletResponse) - Method in class io.dropwizard.servlets.tasks.TaskServlet
 

E

equals(Object) - Method in class io.dropwizard.servlets.assets.ByteRange
 
execute(Map<String, List<String>>, PrintWriter) - Method in class io.dropwizard.servlets.tasks.GarbageCollectionTask
 
execute(Map<String, List<String>>, PrintWriter) - Method in class io.dropwizard.servlets.tasks.LogConfigurationTask
 
execute(Map<String, List<String>>, String, PrintWriter) - Method in class io.dropwizard.servlets.tasks.PostBodyTask
 
execute(Map<String, List<String>>, PrintWriter) - Method in class io.dropwizard.servlets.tasks.PostBodyTask
Deprecated.
execute(Map<String, List<String>>, PrintWriter) - Method in class io.dropwizard.servlets.tasks.Task
Executes the task.

G

GarbageCollectionTask - Class in io.dropwizard.servlets.tasks
Performs a full JVM garbage collection (probably).
GarbageCollectionTask() - Constructor for class io.dropwizard.servlets.tasks.GarbageCollectionTask
Creates a new GarbageCollectionTask.
GarbageCollectionTask(Runtime) - Constructor for class io.dropwizard.servlets.tasks.GarbageCollectionTask
Creates a new GarbageCollectionTask with the given Runtime instance.
getEnd() - Method in class io.dropwizard.servlets.assets.ByteRange
 
getFullUrl(HttpServletRequest) - Static method in class io.dropwizard.servlets.Servlets
Returns the full URL of the given request.
getIndexFile() - Method in class io.dropwizard.servlets.assets.AssetServlet
 
getLastModified(URL) - Static method in class io.dropwizard.servlets.assets.ResourceURL
Returns the last modified time for file:// and jar:// URLs.
getName() - Method in class io.dropwizard.servlets.tasks.Task
Returns the task's name,
getResourceURL() - Method in class io.dropwizard.servlets.assets.AssetServlet
 
getResourceUrl(String) - Method in class io.dropwizard.servlets.assets.AssetServlet
 
getResponseContentType() - Method in class io.dropwizard.servlets.tasks.Task
Returns the task's response content type,
getStart() - Method in class io.dropwizard.servlets.assets.ByteRange
 
getTasks() - Method in class io.dropwizard.servlets.tasks.TaskServlet
 
getUriPath() - Method in class io.dropwizard.servlets.assets.AssetServlet
 

H

hashCode() - Method in class io.dropwizard.servlets.assets.ByteRange
 

I

init(FilterConfig) - Method in class io.dropwizard.servlets.CacheBustingFilter
 
init(FilterConfig) - Method in class io.dropwizard.servlets.SlowRequestFilter
 
init(FilterConfig) - Method in class io.dropwizard.servlets.ThreadNameFilter
 
io.dropwizard.servlets - package io.dropwizard.servlets
 
io.dropwizard.servlets.assets - package io.dropwizard.servlets.assets
 
io.dropwizard.servlets.tasks - package io.dropwizard.servlets.tasks
 
isDirectory(URL) - Static method in class io.dropwizard.servlets.assets.ResourceURL
Returns true if the URL passed to it corresponds to a directory.

L

LogConfigurationTask - Class in io.dropwizard.servlets.tasks
Sets the logging level for a number of loggers
LogConfigurationTask() - Constructor for class io.dropwizard.servlets.tasks.LogConfigurationTask
Creates a new LogConfigurationTask.
LogConfigurationTask(ILoggerFactory) - Constructor for class io.dropwizard.servlets.tasks.LogConfigurationTask
Creates a new LogConfigurationTask with the given ILoggerFactory instance.

P

parse(String, int) - Static method in class io.dropwizard.servlets.assets.ByteRange
 
PostBodyTask - Class in io.dropwizard.servlets.tasks
A task which can be performed via the admin interface and provides the post body of the request.
PostBodyTask(String) - Constructor for class io.dropwizard.servlets.tasks.PostBodyTask
Create a new task with the given name.
PostBodyTask(String, String) - Constructor for class io.dropwizard.servlets.tasks.PostBodyTask
Create a new task with the given name and response content type

R

readResource(URL) - Method in class io.dropwizard.servlets.assets.AssetServlet
 
ResourceNotFoundException - Exception in io.dropwizard.servlets.assets
 
ResourceNotFoundException(Throwable) - Constructor for exception io.dropwizard.servlets.assets.ResourceNotFoundException
 
ResourceURL - Class in io.dropwizard.servlets.assets
Helper methods for dealing with URL objects for local resources.

S

Servlets - Class in io.dropwizard.servlets
Utility functions for dealing with servlets.
SlowRequestFilter - Class in io.dropwizard.servlets
A servlet filter which logs the methods and URIs of requests which take longer than a given duration of time to complete.
SlowRequestFilter() - Constructor for class io.dropwizard.servlets.SlowRequestFilter
Creates a filter which logs requests which take longer than 1 second.
SlowRequestFilter(Duration) - Constructor for class io.dropwizard.servlets.SlowRequestFilter
Creates a filter which logs requests which take longer than the given duration.

T

Task - Class in io.dropwizard.servlets.tasks
An arbitrary administrative task which can be performed via the admin interface.
Task(String) - Constructor for class io.dropwizard.servlets.tasks.Task
Create a new task with the given name.
Task(String, String) - Constructor for class io.dropwizard.servlets.tasks.Task
Create a new task with the given name and response content type
TaskServlet - Class in io.dropwizard.servlets.tasks
A servlet which provides access to administrative Tasks.
TaskServlet(MetricRegistry) - Constructor for class io.dropwizard.servlets.tasks.TaskServlet
Creates a new TaskServlet.
ThreadNameFilter - Class in io.dropwizard.servlets
A servlet filter which adds the request method and URI to the thread name processing the request for the duration of the request.
ThreadNameFilter() - Constructor for class io.dropwizard.servlets.ThreadNameFilter
 
toString() - Method in class io.dropwizard.servlets.assets.ByteRange
 
A B C D E G H I L P R S T 
Skip navigation links

Copyright © 2019. All rights reserved.