- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 274 for entityid (0.05 seconds)
-
src/test/java/org/codelibs/fess/util/IpAddressUtilTest.java
public void testRealWorldScenarios() throws UnknownHostException { // Scenario 1: SAML entityId for IPv6 InetAddress localhost = InetAddress.getByName("localhost"); String entityId = IpAddressUtil.buildUrl("http", localhost, 8080, "/sso/metadata"); assertTrue(entityId.startsWith("http://")); assertTrue(entityId.contains(":8080/sso/metadata")); // Scenario 2: OpenSearch embedded mode URL
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 08:31:03 GMT 2025 - 8.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
* <pre> * # All SP URLs will be derived from this base URL * saml.sp.base.url=https://your-fess-server.example.com * </pre> * * <h3>Option 2: Set individual SP URLs</h3> * <pre> * # SP Entity ID (Audience URI in IdP) * saml.sp.entityid=https://your-fess-server.example.com/sso/metadata * * # Assertion Consumer Service URL * saml.sp.assertion_consumer_service.url=https://your-fess-server.example.com/sso/ *
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 03:13:33 GMT 2026 - 20.2K bytes - Click Count (3) -
src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 18.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/RenderDataUtilTest.java
@Test public void test_register_entityList() { RenderData data = new RenderData(); BsUser entity1 = new BsUser(); entity1.setName("name1"); BsUser entity2 = new BsUser(); entity2.setName("name2"); List<BsUser> entityList = Arrays.asList(entity1, entity2); RenderDataUtil.register(data, "entities", entityList);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java
switch (form.crudMode) { case CrudMode.CREATE: return OptionalEntity.of(new WebConfig()).map(entity -> { entity.setCreatedBy(username); entity.setCreatedTime(currentTime); return entity; }); case CrudMode.EDIT: if (form instanceof EditForm) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 22.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java
switch (form.crudMode) { case CrudMode.CREATE: return OptionalEntity.of(new FileConfig()).map(entity -> { entity.setCreatedBy(username); entity.setCreatedTime(currentTime); return entity; }); case CrudMode.EDIT: if (form instanceof EditForm) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 21.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java
* Creates an EditBody from a ScheduledJob entity. * * @param entity the scheduled job entity to convert * @return the converted EditBody */ protected EditBody createEditBody(final ScheduledJob entity) { final EditBody body = new EditBody(); copyBeanToBean(entity, body, op -> op.exclude(Constants.COMMON_CONVERSION_RULE)); body.running = entity.isRunning(); return body; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 10.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/relatedquery/AdminRelatedqueryAction.java
return getEntity(form, username, currentTime).map(entity -> { entity.setUpdatedBy(username); entity.setUpdatedTime(currentTime); BeanUtil.copyBeanToBean(form, entity, op -> op.exclude( Stream.concat(Stream.of(Constants.COMMON_CONVERSION_RULE), Stream.of(Constants.QUERIES)).toArray(n -> new String[n])));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 13:56:35 GMT 2025 - 16.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/group/AdminGroupAction.java
* @return optional group entity */ public static OptionalEntity<Group> getGroup(final CreateForm form) { return getEntity(form).map(entity -> { copyMapToBean(form.attributes, entity, op -> op.exclude(Constants.COMMON_CONVERSION_RULE)); copyBeanToBean(form, entity, op -> op.exclude(Constants.COMMON_CONVERSION_RULE)); return entity; }); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 13:56:35 GMT 2025 - 16K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java
return getEntity(form, username, currentTime).map(entity -> { entity.setUpdatedBy(username); entity.setUpdatedTime(currentTime); copyBeanToBean(form, entity, op -> op.exclude(Constants.COMMON_CONVERSION_RULE)); return entity; }); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 13:56:35 GMT 2025 - 15.4K bytes - Click Count (0)