- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for expectInfoClass (0.09 seconds)
-
src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponse.java
public Smb2QueryDirectoryResponse(final Configuration config, final byte expectInfoClass) { super(config); this.expectInfoClass = expectInfoClass; } /** * Gets the directory entries returned by the query * * @return the fileInformation */ public FileEntry[] getResults() { return this.results; } /** * {@inheritDoc} *
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.1K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoResponse.java
* @param expectInfoClass * the expected information class in the response */ public Smb2QueryInfoResponse(final Configuration config, final byte expectInfoType, final byte expectInfoClass) { super(config); this.expectInfoType = expectInfoType; this.expectInfoClass = expectInfoClass; } /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 6.8K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponseTest.java
} @Test @DisplayName("Test constructor initializes with config and expectInfoClass") void testConstructor() { byte expectInfoClass = Smb2QueryDirectoryRequest.FILE_BOTH_DIRECTORY_INFO; response = new Smb2QueryDirectoryResponse(mockConfig, expectInfoClass); assertNotNull(response); assertNull(response.getResults()); // Should be null before decoding }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 23.5K bytes - Click Count (0)