Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DEFAULT_HTTPS_PORT (0.08 sec)

  1. src/test/java/jcifs/smb1/https/HandlerTest.java

        @DisplayName("Constants Tests")
        class ConstantsTests {
    
            @Test
            @DisplayName("DEFAULT_HTTPS_PORT should be 443")
            void testDefaultHttpsPortValue() {
                // Then
                assertEquals(443, Handler.DEFAULT_HTTPS_PORT);
            }
    
            @Test
            @DisplayName("DEFAULT_HTTPS_PORT should be public static final")
            void testDefaultHttpsPortModifiers() throws NoSuchFieldException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  2. src/test/java/jcifs/https/HandlerTest.java

        @DisplayName("Constants Tests")
        class ConstantsTests {
    
            @Test
            @DisplayName("DEFAULT_HTTPS_PORT should be 443")
            void testDefaultHttpsPortValue() {
                // Then
                assertEquals(443, Handler.DEFAULT_HTTPS_PORT);
            }
    
            @Test
            @DisplayName("DEFAULT_HTTPS_PORT should be public static final")
            void testDefaultHttpsPortModifiers() throws NoSuchFieldException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/https/Handler.java

     * stream handler.
     */
    public class Handler extends jcifs.smb1.http.Handler {
    
        /**
         * The default HTTPS port (<code>443</code>).
         */
        public static final int DEFAULT_HTTPS_PORT = 443;
    
        /**
         * Default constructor for SMB1 HTTPS URL handler.
         */
        public Handler() {
        }
    
        /**
         * Returns the default HTTPS port.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/https/Handler.java

     */
    @Deprecated
    public class Handler extends jcifs.http.Handler {
    
        /**
         * The default HTTPS port (<code>443</code>).
         */
        public static final int DEFAULT_HTTPS_PORT = 443;
    
        /**
         * Constructs an HTTPS handler with the specified CIFS context.
         *
         * @param tc context to use
         */
        public Handler(final CIFSContext tc) {
            super(tc);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.9K bytes
    - Viewed (0)
Back to top