Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for secret (0.2 sec)

  1. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

        protected static final String OIC_REDIRECT_URL = "oic.redirect.url";
    
        protected static final String OIC_TOKEN_SERVER_URL = "oic.token.server.url";
    
        protected static final String OIC_CLIENT_SECRET = "oic.client.secret";
    
        protected static final String OIC_STATE = "OIC_STATE";
    
        protected final HttpTransport httpTransport = new NetHttpTransport();
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

        protected static final String AZUREAD_AUTHORITY = "aad.authority";
    
        protected static final String AZUREAD_TENANT = "aad.tenant";
    
        protected static final String AZUREAD_CLIENT_SECRET = "aad.client.secret";
    
        protected static final String AZUREAD_CLIENT_ID = "aad.client.id";
    
        protected static final String AZUREAD_REPLY_URL = "aad.reply.url";
    
        protected static final String STATES = "aadStates";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.1K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/es/config/exentity/WebConfigTest.java

                    return StringUtil.EMPTY;
                }
    
                @Override
                public String getAppEncryptPropertyPattern() {
                    return ".*password|.*key|.*token|.*secret";
                }
            };
            ComponentUtil.setFessConfig(fessConfig);
            SystemHelper systemHelper = new SystemHelper() {
                @Override
                public String getProductVersion() {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java

                    || "spnego.preauth.password".equals(key) //
                    || "app.cipher.key".equals(key) //
                    || "oic.client.id".equals(key) //
                    || "oic.client.secret".equals(key);
        }
    
        public static List<Map<String, String>> getBugReportItems() {
            final List<Map<String, String>> itemList = new ArrayList<>();
            for (final String label : bugReportLabels) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/Constants.java

        public static final String STORAGE_ENDPOINT = "storage.endpoint";
    
        public static final String STORAGE_ACCESS_KEY = "storage.accesskey";
    
        public static final String STORAGE_SECRET_KEY = "storage.secretkey";
    
        public static final String STORAGE_BUCKET = "storage.bucket";
    
        public static final String MAPPING_TYPE_ARRAY = "array";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_de.properties

    labels.dict_stemmeroverride_file=Stemmer-Override-Datei
    labels.general_storage=Speicherplatz
    labels.ldap_group_filter=Gruppen-Filter
    labels.storage_endpoint=Endpunkt
    labels.storage_access_key=Zugriffsschlüssel
    labels.storage_secret_key=Geheimer Schlüssel
    labels.storage_bucket=Bucket
    labels.reset_dictionaries=Wörterbuch zurücksetzen
    labels.eol_error=Ihr System wird nicht mehr unterstützt. Siehe EOL-Seite.
    labels.tooltip_search_view=Search View
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 42.8K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_fr.properties

    labels.notification_login	=	Page de connexion
    labels.notification_search_top	=	Rechercher en haut de la page
    labels.storage_endpoint	=	Point final
    labels.storage_access_key	=	Clef d'accès
    labels.storage_secret_key	=	Clef secrète
    labels.storage_bucket	=	Bucket
    labels.send_testmail	=	Envoyer un email de test
    labels.backup_configuration	=	Sauvegarde
    labels.backup_name	=	Nom
    labels.backup_bulk_file	=	Fichier en lot
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setStorageSecretKey(final String value) {
            setSystemProperty(Constants.STORAGE_SECRET_KEY, value);
        }
    
        default String getStorageSecretKey() {
            return getSystemProperty(Constants.STORAGE_SECRET_KEY, StringUtil.EMPTY);
        }
    
        default void setStorageBucket(final String value) {
            setSystemProperty(Constants.STORAGE_BUCKET, value);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String APP_CIPHER_KEY = "app.cipher.key";
    
        /** The key of the configuration. e.g. sha256 */
        String APP_DIGEST_ALGORISM = "app.digest.algorism";
    
        /** The key of the configuration. e.g. .*password|.*key|.*token|.*secret */
        String APP_ENCRYPT_PROPERTY_PATTERN = "app.encrypt.property.pattern";
    
        /** The key of the configuration. e.g.  */
        String APP_EXTENSION_NAMES = "app.extension.names";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  10. src/main/java/org/codelibs/fess/annotation/Secured.java

     * Java 5 annotation for describing service layer security attributes.
     *
     * <p>
     * The <code>Secured</code> annotation is used to define a list of security configuration
     * attributes for business methods.
     * <p>
     * For example:
     *
     * <pre>
     * &#064;Secured({ &quot;ROLE_USER&quot; })
     * public void create(Contact contact);
     *
     * &#064;Secured({ &quot;ROLE_USER&quot;, &quot;ROLE_ADMIN&quot; })
     * public void update(Contact contact);
     *
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.8K bytes
    - Viewed (0)
Back to top