- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for CreateContextResponse (0.3 sec)
-
src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java
/** * Factory method to create appropriate context response based on context name * @param nameBytes context name bytes * @return appropriate CreateContextResponse implementation or null if unknown */ private static CreateContextResponse createContext(final byte[] nameBytes) { if (nameBytes == null || nameBytes.length != 4) { return null; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 15.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/CreateContextResponseTest.java
import jcifs.internal.SMBProtocolDecodingException; /** * Test class for CreateContextResponse interface functionality */ @DisplayName("CreateContextResponse Tests") class CreateContextResponseTest { /** * Test implementation of CreateContextResponse for testing purposes */ static class TestCreateContextResponse implements CreateContextResponse { private byte[] name; private byte[] data;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 16.2K bytes - Viewed (0)