Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SmbComSetInformationResponse (0.1 sec)

  1. 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)
  2. 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)
Back to top