- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for getHomeDirectory (0.08 seconds)
-
src/main/java/jcifs/pac/PacLogonInfo.java
public String getProfilePath() { return this.profilePath; } /** * Returns the user's home directory path. * @return the home directory path */ public String getHomeDirectory() { return this.homeDirectory; } /** * Returns the user's home drive letter. * @return the home drive */ public String getHomeDrive() {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 14.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/user/bsentity/BsUser.java
return groups; } public void setGroups(String[] value) { registerModifiedProperty("groups"); this.groups = value; } public String getHomeDirectory() { checkSpecifiedProperty("homeDirectory"); return convertEmptyToNull(homeDirectory); } public void setHomeDirectory(String value) { registerModifiedProperty("homeDirectory");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 22.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/user/bsentity/dbmeta/UserDbm.java
setupEpg(_epgMap, et -> ((User) et).getGroups(), (et, vl) -> ((User) et).setGroups((String[]) vl), "groups"); setupEpg(_epgMap, et -> ((User) et).getHomeDirectory(), (et, vl) -> ((User) et).setHomeDirectory(DfTypeUtil.toString(vl)), "homeDirectory");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 27K bytes - Click Count (0) -
src/test/java/jcifs/pac/PacLogonInfoTest.java
when(logonInfo.getUserDisplayName()).thenReturn("Display Name"); when(logonInfo.getProfilePath()).thenReturn("\\\\server\\\\profile"); when(logonInfo.getHomeDirectory()).thenReturn("\\\\server\\\\home"); when(logonInfo.getHomeDrive()).thenReturn("H:"); when(logonInfo.getLogonScript()).thenReturn("logon.bat"); when(logonInfo.getUserAccountControl()).thenReturn(0x200);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 12.3K bytes - Click Count (0)