- Sort Score
- Num 10 results
- Language All
Results 1 - 8 of 8 for getSecurity (0.69 seconds)
-
src/test/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfoTest.java
infoField.setAccessible(true); infoField.set(msrpcShareGetInfo, info502); // Call getSecurity multiple times - should return consistent results ACE[] result1 = msrpcShareGetInfo.getSecurity(); ACE[] result2 = msrpcShareGetInfo.getSecurity(); // Both should be null (no DACL) assertNull(result1); assertNull(result2); } @Test
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 14.3K bytes - Click Count (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcShareGetInfo.java
* * @return an array of ACE objects representing the share's security descriptor * @throws IOException if there is an error retrieving the security information */ public ACE[] getSecurity() throws IOException { final srvsvc.ShareInfo502 info502 = (srvsvc.ShareInfo502) info; if (info502.security_descriptor != null) { SecurityDescriptor sd;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.3K bytes - Click Count (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfo.java
* * @return an array of ACE objects representing the share's security descriptor * @throws IOException if there is an error retrieving the security information */ public ACE[] getSecurity() throws IOException { final srvsvc.ShareInfo502 info502 = (srvsvc.ShareInfo502) this.info; if (info502.security_descriptor != null) { SecurityDescriptor sd;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.3K bytes - Click Count (0) -
src/test/java/jcifs/SmbResourceTest.java
when(mockResource.getSecurity()).thenReturn(expectedACEs); when(mockResource.getSecurity(true)).thenReturn(expectedACEs); when(mockResource.getShareSecurity(false)).thenReturn(expectedACEs); // When ACE[] security1 = mockResource.getSecurity(); ACE[] security2 = mockResource.getSecurity(true);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 35K bytes - Click Count (0) -
src/main/java/jcifs/SmbResource.java
* <code>S-X-Y-Z</code> strings of fragments of). * <p> * Alternatively <code>getSecurity(true)</code> may be used to resolve all * SIDs together and detect network failures. * * @return array of ACEs * @throws IOException if an I/O error occurs */ ACE[] getSecurity() throws IOException; /** * Return an array of Access Control Entry (ACE) objects representing
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 28K bytes - Click Count (1) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
* <p> * Alternatively {@code getSecurity(true)} may be used to resolve all * SIDs together and detect network failures. */ /** * Returns the security information for this file * * @return an array of ACE entries for this file * @throws IOException if an I/O error occurs */ public ACE[] getSecurity() throws IOException { return getSecurity(false);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 112.2K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbFile.java
return response.getSecurityDescriptor(); } } @Override public ACE[] getSecurity() throws IOException { return getSecurity(false); } @Override public ACE[] getSecurity(final boolean resolveSids) throws IOException { try (SmbTreeHandleImpl th = ensureTreeConnected()) {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 103.2K bytes - Click Count (0) -
docs/works_with_okhttp.md
* [Cronet Transport for OkHttp](https://github.com/google/cronet-transport-for-okhttp): A HTTP3 ready transport layer for OkHttp on Android, based on Chromium network stack. * [CWAC-NetSecurity](https://github.com/commonsguy/cwac-netsecurity): Simplifying Secure Internet Access. * [Failsafe](https://failsafe.dev/okhttp/): Fault tolerance and resilience patterns.
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Nov 26 07:59:38 GMT 2025 - 3.8K bytes - Click Count (0)