Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 105 for port (0.17 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/BsFileAuthentication.java

            this.password = value;
        }
    
        public Integer getPort() {
            checkSpecifiedProperty("port");
            return port;
        }
    
        public void setPort(Integer value) {
            registerModifiedProperty("port");
            this.port = value;
        }
    
        public String getProtocolScheme() {
            checkSpecifiedProperty("protocolScheme");
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/exentity/CrawlingConfig.java

                public static final String PROXY_PASSWORD = "proxyPassword";
                public static final String PROXY_USERNAME = "proxyUsername";
                public static final String PROXY_PORT = HcHttpClient.PROXY_PORT_PROPERTY;
                public static final String PROXY_HOST = HcHttpClient.PROXY_HOST_PROPERTY;
                public static final String USER_AGENT = HcHttpClient.USER_AGENT_PROPERTY;
            }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  3. src/main/resources/fess_env_crawler.properties

    #                                                     ------
    # Does it send mock mail? (true: no send actually, logging only)
    mail.send.mock = false
    
    # SMTP server settings for main: host:port
    mail.smtp.server.main.host.and.port = localhost:25
    
    # The prefix of subject to show test environment or not
    mail.subject.test.prefix = 
    
    # The common return path of all mail
    mail.return.path = root@localhost
    
    
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Jan 29 07:34:32 GMT 2018
    - 2.2K bytes
    - Viewed (0)
  4. src/main/resources/fess_env_suggest.properties

    #                                                     ------
    # Does it send mock mail? (true: no send actually, logging only)
    mail.send.mock = false
    
    # SMTP server settings for main: host:port
    mail.smtp.server.main.host.and.port = localhost:25
    
    # The prefix of subject to show test environment or not
    mail.subject.test.prefix = 
    
    # The common return path of all mail
    mail.return.path = root@localhost
    
    
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Jan 29 07:34:32 GMT 2018
    - 2.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/exentity/WebAuthentication.java

            return "WebAuthentication [webConfig=" + webConfig + ", authRealm=" + authRealm + ", createdBy=" + createdBy + ", createdTime="
                    + createdTime + ", hostname=" + hostname + ", parameters=" + parameters + ", port=" + port + ", protocolScheme="
                    + protocolScheme + ", updatedBy=" + updatedBy + ", updatedTime=" + updatedTime + ", username=" + username + ", webConfigId="
                    + webConfigId + ", docMeta=" + docMeta + "]";
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/webauth/admin_webauth.jsp

                                                                    test="${data.port==null||data.port==''}">
                                                                <la:message key="labels.webauth_any"/>
                                                            </c:if> ${f:h(data.port)}</td>
                                                            <td>${f:h(data.webConfig.name)}</td>
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Mar 24 13:43:18 GMT 2020
    - 6.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/FileAuthPager.java

        private boolean existNextPage;
    
        private List<Integer> pageNumberList;
    
        private int pageSize;
    
        private int currentPageNumber;
    
        public String id;
    
        public String port;
    
        public String username;
    
        public String fileConfigId;
    
        public String createdBy;
    
        public String createdTime;
    
        public String versionNo;
    
        public void clear() {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/WebAuthenticationDbm.java

                false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnPort = cci("port", "port", null, null, Integer.class, "port", null, false, false, false, "Integer", 0,
                0, null, null, false, null, null, null, null, null, false);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 13K bytes
    - Viewed (0)
  9. src/main/config/es/fess_config_file_authentication.json

                "type" : "keyword"
              },
              "parameters" : {
                "type" : "keyword"
              },
              "password" : {
                "type" : "keyword"
              },
              "port" : {
                "type" : "integer"
              },
              "protocolScheme" : {
                "type" : "keyword"
              },
              "updatedBy" : {
                "type" : "keyword"
              },
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 1.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/webauth/CreateForm.java

        @ValidateTypeFailure
        public Integer crudMode;
    
        @Size(max = 100)
        public String hostname;
    
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer port;
    
        @Size(max = 100)
        public String authRealm;
    
        @Size(max = 10)
        public String protocolScheme;
    
        @Required
        @Size(max = 100)
        public String username;
    
        @Size(max = 100)
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.9K bytes
    - Viewed (0)
Back to top