- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getShareSecurity (0.54 sec)
-
src/test/java/jcifs/tests/FileAttributesTest.java
} } @Test public void testShareSecurity () throws IOException { try ( SmbResource f = getDefaultShareRoot() ) { try { jcifs.ACE[] security = f.getShareSecurity(true); Assume.assumeNotNull((Object) security); } catch ( SmbUnsupportedOperationException e ) { Assume.assumeTrue("No Ntsmbs", false); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 12.3K bytes - Viewed (0) -
src/main/java/jcifs/SmbResource.java
* the ACLs returned by <tt>getShareSecurity</tt> and <tt>getSecurity</tt> * respectively. * * @param resolveSids * Attempt to resolve the SIDs within each ACE form * their numeric representation to their corresponding account names. * @return array of ACEs * @throws IOException */ ACE[] getShareSecurity ( boolean resolveSids ) throws IOException;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Dec 20 14:09:34 UTC 2020 - 26K bytes - Viewed (1) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
* for "Share Permissions" and another for "Security". These correspond to * the ACLs returned by <tt>getShareSecurity</tt> and <tt>getSecurity</tt> * respectively. * @param resolveSids Attempt to resolve the SIDs within each ACE form * their numeric representation to their corresponding account names. */ public ACE[] getShareSecurity(boolean resolveSids) throws IOException { String p = url.getPath();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 107.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
else { ownerGroup.initContext(server, getContext()); } return ownerGroup; } } @Override public ACE[] getShareSecurity ( boolean resolveSids ) throws IOException { try ( SmbTreeHandleInternal th = ensureTreeConnected() ) { String server = this.fileLocator.getServerWithDfs(); ACE[] aces;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0)