HttpsURI.st
author Claus Gittinger <cg@exept.de>
Sat, 02 May 2020 21:40:13 +0200
changeset 5476 7355a4b11cb6
parent 4723 709c35095f42
permissions -rw-r--r--
#FEATURE by cg class: Socket class added: #newTCPclientToHost:port:domain:domainOrder:withTimeout: changed: #newTCPclientToHost:port:domain:withTimeout:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4723
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2018 by eXept Software AG
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic2' }"
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
"{ NameSpace: Smalltalk }"
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
HttpURI subclass:#HttpsURI
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	instanceVariableNames:''
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	classVariableNames:''
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	poolDictionaries:''
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	category:'Net-Resources'
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!HttpsURI class methodsFor:'documentation'!
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
copyright
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
"
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
 COPYRIGHT (c) 2018 by eXept Software AG
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
              All Rights Reserved
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 This software is furnished under a license and may be used
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 only in accordance with the terms of that license and with the
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 be provided or otherwise made available to, or used by, any
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
 other person.  No title to or ownership of the software is
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
 hereby transferred.
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
"
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
! !
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
!HttpsURI class methodsFor:'accessing'!
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
schemes
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
    ^ #(https)
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
! !
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
!HttpsURI methodsFor:'defaults'!
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
defaultPort
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
    ^ 443
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
    "Created: / 28-08-2018 / 09:03:57 / Claus Gittinger"
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
! !
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
!HttpsURI class methodsFor:'documentation'!
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
version
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
    ^ '$Header$'
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
!
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
version_CVS
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
    ^ '$Header$'
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
! !
709c35095f42 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63