- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for isWritable (0.12 sec)
-
src/main/java/org/codelibs/core/beans/PropertyDesc.java
*/ boolean isReadable(); /** * Returns whether the property value can be set. * * @return whether the property value can be set */ boolean isWritable(); /** * Returns the public field recognized as a property. * * @return the public field recognized as a property */ Field getField(); /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java
readable = true; writable = true; } } @Override public boolean isReadable() { return readable; } @Override public boolean isWritable() { return writable; } @Override public <T> T getValue(final Object target) { assertArgumentNotNull("target", target); try {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 24 01:52:43 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/BeanUtil.java
continue; } final PropertyDesc destPropertyDesc = destBeanDesc.getPropertyDesc(destPropertyName); if (!destPropertyDesc.isWritable()) { continue; } final Object value = srcPropertyDesc.getValue(src); if (!options.isTargetValue(value)) { continue; }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 23.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/FessUserTest.java
assertFalse(user.isEditable()); // Test with different user configurations user = new TestFessUser("admin", new String[] { "admin" }, new String[] { "admins" }, new String[] { "*" }); assertFalse(user.isEditable()); user = new TestFessUser("", new String[] {}, new String[] {}, new String[] {}); assertFalse(user.isEditable()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java
public void test_isEditable() { // Test with non-editable user (default) testUser.setEditable(false); assertFalse(fessUserBean.isEditable()); // Test with editable user testUser.setEditable(true); assertTrue(fessUserBean.isEditable()); } public void test_hasRole() { // Test with no roles testUser.setRoleNames(new String[] {});
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessUserBean.java
} public String[] getRoles() { return user.getRoleNames(); } public String[] getGroups() { return user.getGroupNames(); } public boolean isEditable() { return user.isEditable(); } public boolean hasRole(final String role) { return stream(user.getRoleNames()).get(stream -> stream.anyMatch(s -> s.equals(role))); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
*/ protected ConstructorDesc findSuitableConstructorDesc(final Object... args) { for (final ConstructorDesc constructorDesc : constructorDescs) { if (isSuitable(constructorDesc.getParameterTypes(), args, false)) { return constructorDesc; } } return null; } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 25.8K bytes - Viewed (1) -
logger/sql.go
"strconv" "strings" "time" "unicode" "gorm.io/gorm/utils" ) const ( tmFmtWithMS = "2006-01-02 15:04:05.999" tmFmtZero = "0000-00-00 00:00:00" nullStr = "NULL" ) func isPrintable(s string) bool { for _, r := range s { if !unicode.IsPrint(r) { return false } } return true } // A list of Go types that should be converted to SQL primitives
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Mar 21 08:00:02 UTC 2024 - 5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FessUser.java
*/ String[] getPermissions(); /** * Determines if the user's information can be edited. * @return True if the user's information is editable, false otherwise. */ default boolean isEditable() { return false; } /** * Refreshes the user's information from the underlying data source. * @return True if refresh was successful, false otherwise. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapUser.java
* * @return The environment for LDAP connection. */ public Hashtable<String, String> getEnvironment() { return env; } @Override public boolean isEditable() { return ComponentUtil.getFessConfig().isLdapAdminEnabled(name); } private static String[] distinct(final String[] values) { if (values == null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.1K bytes - Viewed (0)