Adds javadoc to enums
This commit is contained in:
@@ -58,7 +58,15 @@ public interface HttpHeadersFilter {
|
||||
|
||||
enum Type {
|
||||
|
||||
REQUEST, RESPONSE
|
||||
/**
|
||||
* Filter for request headers.
|
||||
*/
|
||||
REQUEST,
|
||||
|
||||
/**
|
||||
* Filter for response headers.
|
||||
*/
|
||||
RESPONSE
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -83,6 +83,9 @@ public interface ShortcutConfigurable {
|
||||
|
||||
enum ShortcutType {
|
||||
|
||||
/**
|
||||
* Default shortcut type.
|
||||
*/
|
||||
DEFAULT {
|
||||
@Override
|
||||
public Map<String, Object> normalize(Map<String, String> args, ShortcutConfigurable shortcutConf,
|
||||
@@ -100,6 +103,9 @@ public interface ShortcutConfigurable {
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* List shortcut type.
|
||||
*/
|
||||
GATHER_LIST {
|
||||
@Override
|
||||
public Map<String, Object> normalize(Map<String, String> args, ShortcutConfigurable shortcutConf,
|
||||
@@ -116,7 +122,9 @@ public interface ShortcutConfigurable {
|
||||
}
|
||||
},
|
||||
|
||||
// list is all elements except last which is a boolean flag
|
||||
/**
|
||||
* List is all elements except last which is a boolean flag.
|
||||
*/
|
||||
GATHER_LIST_TAIL_FLAG {
|
||||
@Override
|
||||
public Map<String, Object> normalize(Map<String, String> args, ShortcutConfigurable shortcutConf,
|
||||
|
||||
Reference in New Issue
Block a user