- Sort Score
- Result 10 results
- Languages All
Results 31 - 37 of 37 for getUpdateMap (0.04 sec)
-
src/test/java/org/codelibs/fess/it/admin/dict/MappingTests.java
requestBody.put(KEY_PROPERTY, keyProp); requestBody.put("output", "output"); return requestBody; } @Override protected Map<String, Object> getUpdateMap() { final Map<String, Object> updateMap = new HashMap<>(); updateMap.put("output", "new_output"); return updateMap; } @Test void crudTest() { testCreate();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/dict/ProtwordsTests.java
final String keyProp = NAME_PREFIX + id; requestBody.put(KEY_PROPERTY, keyProp); return requestBody; } @Override protected Map<String, Object> getUpdateMap() { fail(); // Unreachable return null; } @Test void crudTest() { testCreate(); testRead(); testDelete(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/JobLogTests.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 19 07:14:01 UTC 2025 - 2.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/RoleTests.java
requestBody.put(KEY_PROPERTY, keyProp); return requestBody; } private static final String NEW_SUFFIX = "_new"; @Override protected Map<String, Object> getUpdateMap() { final Map<String, Object> requestBody = new HashMap<>(); requestBody.put(KEY_PROPERTY, NAME_PREFIX + NEW_SUFFIX); return requestBody; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/SystemInfoTests.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 19 07:14:01 UTC 2025 - 2.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/FileAuthTests.java
requestBody.put(KEY_PROPERTY, keyProp); requestBody.put("file_config_id", getFileConfigId()); return requestBody; } @Override protected Map<String, Object> getUpdateMap() { final Map<String, Object> updateMap = new HashMap<>(); updateMap.put("parameters", "new_parameters=test"); return updateMap; } @Test void crudTest() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 3.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/PluginTests.java
protected Map<String, Object> createTestParam(int id) { final Map<String, Object> requestBody = new HashMap<>(); return requestBody; } @Override protected Map<String, Object> getUpdateMap() { final Map<String, Object> updateMap = new HashMap<>(); return updateMap; } @AfterEach protected void tearDown() { // do nothing }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.5K bytes - Viewed (0)