Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for webConfigId (0.12 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/webauth/CreateForm.java

        public String username;
    
        @Size(max = 100)
        public String password;
    
        @Size(max = 1000)
        public String parameters;
    
        @Required
        @Size(max = 1000)
        public String webConfigId;
    
        @Size(max = 1000)
        public String createdBy;
    
        @ValidateTypeFailure
        public Long createdTime;
    
        public void initialize() {
            crudMode = CrudMode.CREATE;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsRequestHeaderCB.java

                doColumn("updatedTime");
            }
    
            public void columnValue() {
                doColumn("value");
            }
    
            public void columnWebConfigId() {
                doColumn("webConfigId");
            }
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsWebAuthenticationCB.java

                doColumn("updatedTime");
            }
    
            public void columnUsername() {
                doColumn("username");
            }
    
            public void columnWebConfigId() {
                doColumn("webConfigId");
            }
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/bsbhv/BsWebAuthenticationBhv.java

                result.setUpdatedTime(DfTypeUtil.toLong(source.get("updatedTime")));
                result.setUsername(DfTypeUtil.toString(source.get("username")));
                result.setWebConfigId(DfTypeUtil.toString(source.get("webConfigId")));
                return updateEntity(source, result);
            } catch (InstantiationException | IllegalAccessException e) {
                final String msg = "Cannot create a new instance: " + entityType.getName();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsbhv/BsRequestHeaderBhv.java

                result.setUpdatedTime(DfTypeUtil.toLong(source.get("updatedTime")));
                result.setValue(DfTypeUtil.toString(source.get("value")));
                result.setWebConfigId(DfTypeUtil.toString(source.get("webConfigId")));
                return updateEntity(source, result);
            } catch (InstantiationException | IllegalAccessException e) {
                final String msg = "Cannot create a new instance: " + entityType.getName();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top