- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for SmbComSetInformationResponse (0.1 sec)
-
src/main/java/jcifs/internal/smb1/com/SmbComSetInformationResponse.java
* attributes and last write time. * * @author mbechler */ public class SmbComSetInformationResponse extends ServerMessageBlock { /** * Constructs a set information response. * * @param config the configuration to use */ public SmbComSetInformationResponse(final Configuration config) { super(config); } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComSetInformationResponseTest.java
private SmbComSetInformationResponse response; @BeforeEach void setUp() { // Setup mock configuration to avoid NPE when(mockConfig.getPid()).thenReturn(12345); response = new SmbComSetInformationResponse(mockConfig); } @Test @DisplayName("Constructor accepts valid config") void constructorValid() { assertDoesNotThrow(() -> new SmbComSetInformationResponse(mockConfig)); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 4.1K bytes - Viewed (0)