CleverGWT
From PlcWiki
(Difference between revisions)
m (→ClvListGrid) |
m (→ClvListGrid - Extension of ListGrid) |
||
Line 27: | Line 27: | ||
}); | }); | ||
</java> | </java> | ||
+ | |||
+ | Note: If you are implementing executeRemove/Add/Fetch you must call response.response(...). Not in executeUpdate. | ||
== BCrypt == | == BCrypt == |
Revision as of 07:27, 20 June 2012
ClvListGrid - Extension of ListGrid
Simplification of CRUD usage:
ClvListGrid grid = new ClvListGrid(new ClvListGrid.Delegate() { @Override public void executeUpdate(ClvListGridResponse response) { // Map<String, Object> reqMap = response.getRequestMap(); // response.response(... } @Override public void executeRemove(ClvListGridResponse response) {} @Override public void executeFetch(ClvListGridResponse response) {} @Override public void executeAdd(ClvListGridResponse response) {} @Override public DataSourceField[] createFields() { return new DataSourceField[] { new DataSourceTextField("Field Name") }; } });
Note: If you are implementing executeRemove/Add/Fetch you must call response.response(...). Not in executeUpdate.
BCrypt
String hashed = BCrypt.hashpw("password", BCrypt.gensalt()); boolean verified = BCrypt.checkpw("password", hashed);