Package com.google.gerrit.server.plugins
Class PluginEntry
- java.lang.Object
-
- com.google.gerrit.server.plugins.PluginEntry
-
public class PluginEntry extends Object
Plugin static resource entryBean representing a static resource inside a plugin. All static resources are available at
<plugin web url>/static
and served by the HttpPluginServlet.
-
-
Field Summary
Fields Modifier and Type Field Description static String
ATTR_CHARACTER_ENCODING
static String
ATTR_CONTENT_TYPE
static Comparator<PluginEntry>
COMPARATOR_BY_NAME
-
Constructor Summary
Constructors Constructor Description PluginEntry(String name, long time)
PluginEntry(String name, long time, Optional<Long> size)
PluginEntry(String name, long time, Optional<Long> size, Map<Object,String> attrs)
-
-
-
Field Detail
-
ATTR_CHARACTER_ENCODING
public static final String ATTR_CHARACTER_ENCODING
- See Also:
- Constant Field Values
-
ATTR_CONTENT_TYPE
public static final String ATTR_CONTENT_TYPE
- See Also:
- Constant Field Values
-
COMPARATOR_BY_NAME
public static final Comparator<PluginEntry> COMPARATOR_BY_NAME
-
-