- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getAppEncryptPropertyPattern (0.16 sec)
-
src/main/java/org/codelibs/fess/util/ParameterUtil.java
final Map<String, String> paramMap = new LinkedHashMap<>(); if (value != null) { int unknownKey = 0; final Pattern properyPattern = Pattern.compile(ComponentUtil.getFessConfig().getAppEncryptPropertyPattern()); final PrimaryCipher cipher = ComponentUtil.getPrimaryCipher(); final String[] lines = value.split("[\r\n]"); for (final String line : lines) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ParameterUtilTest.java
public void setUp() throws Exception { super.setUp(); FessProp.propMap.clear(); FessConfig fessConfig = new FessConfig.SimpleImpl() { @Override public String getAppEncryptPropertyPattern() { return ".*password|.*key"; } }; ComponentUtil.setFessConfig(fessConfig); } public void test_convertParameterMap() { String parameters;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/es/config/exentity/WebConfigTest.java
} @Override public String getHttpProxyPort() { return StringUtil.EMPTY; } @Override public String getAppEncryptPropertyPattern() { return ".*password|.*key|.*token|.*secret"; } }; ComponentUtil.setFessConfig(fessConfig); SystemHelper systemHelper = new SystemHelper() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu May 09 09:48:04 UTC 2024 - 7.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
@Override public String getAppValue() { return appValue.get(); } @Override public String getAppEncryptPropertyPattern() { return ".*password|.*key|.*token|.*secret"; } }); final String now = String.valueOf(System.currentTimeMillis()); helper.updateSystemProperties();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 18.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
* The value is, e.g. .*password|.*key|.*token|.*secret <br> * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getAppEncryptPropertyPattern(); /** * Get the value for the key 'app.extension.names'. <br> * The value is, e.g. <br> * @return The value of found property. (NotNull: if not found, exception but basically no way)
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 468.5K bytes - Viewed (1)