- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 37 for getUpdateMap (0.09 sec)
-
src/test/java/org/codelibs/fess/it/CrudTestBase.java
abstract protected String getItemEndpointSuffix(); abstract protected Map<String, Object> createTestParam(int id); abstract protected Map<String, Object> getUpdateMap(); // ================ // Constant // ================ protected String getIdKey() { return "id"; } @BeforeAll protected static void initAll() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 9.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/BackupTests.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/FileConfigTests.java
requestBody.put("boost", id); requestBody.put("available", true); requestBody.put("sort_order", id); return requestBody; } @Override protected Map<String, Object> getUpdateMap() { final Map<String, Object> updateMap = new HashMap<>(); updateMap.put("paths", "file:///new/path"); return updateMap; } @Test void crudTest() { testCreate();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/SuggestTests.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/dict/DictTests.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/GroupTests.java
attributes.put("gidNumber", new Integer(id).toString()); requestBody.put("attributes", attributes); return requestBody; } @Override protected Map<String, Object> getUpdateMap() { final Map<String, Object> updateMap = new HashMap<>(); final Map<String, String> newAttributes = new HashMap<>(); newAttributes.put("gidNumber", "100");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/AccessTokenTests.java
requestBody.put(KEY_PROPERTY, keyProp); requestBody.put("permissions", "Radmin-api"); return requestBody; } @Override protected Map<String, Object> getUpdateMap() { final Map<String, Object> updateMap = new HashMap<>(); updateMap.put("permissions", "Radmin-api2"); return updateMap; } @Override protected void checkUpdate() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/ReqHeaderTests.java
requestBody.put("value", "val" + id); requestBody.put("web_config_id", getWebConfigId()); return requestBody; } @Override protected Map<String, Object> getUpdateMap() { final Map<String, Object> updateMap = new HashMap<>(); updateMap.put("value", "new_value"); return updateMap; } @Test void crudTest() { testCreate();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/DuplicateHostTests.java
requestBody.put("duplicate_host_name", "duplicate_" + new Integer(id).toString()); requestBody.put("sort_order", id); return requestBody; } @Override protected Map<String, Object> getUpdateMap() { final Map<String, Object> updateMap = new HashMap<>(); updateMap.put("duplicate_host_name", "new_duplicate_host"); return updateMap; } @Test void crudTest() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/LabelTypeTests.java
requestBody.put(KEY_PROPERTY, keyProp); requestBody.put("value", new Integer(id).toString()); return requestBody; } @Override protected Map<String, Object> getUpdateMap() { final Map<String, Object> updateMap = new HashMap<>(); updateMap.put("value", "newValue"); return updateMap; } @Test void crudTest() { testCreate();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.3K bytes - Viewed (0)