public interface QueryStringBindable<T extends QueryStringBindable<T>>
Any type T
that implements this class can be bound to/from query one or more
query string parameters. The only requirement is that the class provides a noarg constructor.
For example, the following type could be used to encode pagination:
class Pager implements QueryStringBindable<Pager> { public int index; public int size; public Optional<Pager> bind(String key, Map<String, String[]> data) { if (data.contains(key + ".index" && data.contains(key + ".size") { try { index = Integer.parseInt(data.get(key + ".index")[0]); size = Integer.parseInt(data.get(key + ".size")[0]); return Optional.<Pager>ofNullable(this); } catch (NumberFormatException e) { return Optional.<Pager>empty(); } } else { return Optional.<Pager>empty(); } } public String unbind(String key) { return key + ".index=" + index + "&" + key + ".size=" + size; } public String javascriptUnbind() { return "function(k,v) {\n" + " return encodeURIComponent(k+'.index')+'='+v.index+'&'+encodeURIComponent(k+'.size')+'='+v.size;\n" + "}"; } }Then, to match the URL
/foo?p.index=5&p.size=42
, you could define the following
route:
GET /foo controllers.Application.foo(p: Pager)Of course, you could ignore the
p
key specified in the routes file and just use hard
coded index and size parameters if you pleased.Modifier and Type | Method and Description |
---|---|
Optional<T> |
bind(String key,
Map<String,String[]> data)
Bind a query string parameter.
|
String |
javascriptUnbind()
Javascript function to unbind in the Javascript router.
|
String |
unbind(String key)
Unbind a query string parameter.
|
Optional<T> bind(String key, Map<String,String[]> data)
key
- Parameter keydata
- The query string dataString unbind(String key)
key=value[&key2=value2...]
.key
- Parameter keyString javascriptUnbind()
If this bindable just represents a single value, you may return null to let the default implementation handle it.
key=value
)