Package com.bumptech.glide.load.model
Interface Headers
-
- All Known Implementing Classes:
LazyHeaders
public interface HeadersAn interface for a wrapper for a set of headers to be included in a Glide request.Implementations must implement equals() and hashcode().
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<java.lang.String,java.lang.String>getHeaders()Returns a non-null map containing a set of headers to apply to an http request.
-
-
-
Field Detail
-
NONE
@Deprecated static final Headers NONE
Deprecated.UseDEFAULTinstead.An empty Headers object that can be used if users don't want to provide headers.
-
DEFAULT
static final Headers DEFAULT
A Headers object containing reasonable defaults that should be used when users don't want to provide their own headers.
-
-