This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 85270
Collapse All | Expand All

(-)core/arch/arch-core.xml (-1 / +133 lines)
Lines 22-28 Link Here
22
]>
22
]>
23
23
24
<api-answers
24
<api-answers
25
  question-version="1.25"
25
  question-version="1.29"
26
  author="jtulach@netbeans.org"
26
  author="jtulach@netbeans.org"
27
>
27
>
28
28
Lines 566-571 Link Here
566
                <samp>FOO</samp>. See warning as per <samp>Env-FOO</samp>.
566
                <samp>FOO</samp>. See warning as per <samp>Env-FOO</samp>.
567
            </api>
567
            </api>
568
        </p>
568
        </p>
569
        <api name="java.net.useSystemProxies" category="private" group="property" type="import">
570
            Get this property to determine when use JDK's <code>java.net.ProxySelector</code> or core's 
571
            implementation of <code>ProxySelector</code>.
572
        </api>
569
 </answer>
573
 </answer>
570
574
571
575
Lines 1070-1075 Link Here
1070
-->
1074
-->
1071
 <answer id="arch-where">
1075
 <answer id="arch-where">
1072
  <defaultanswer generate='here' />
1076
  <defaultanswer generate='here' />
1077
 </answer>
1078
1079
1080
1081
1082
<!--
1083
        <question id="compat-deprecation" when="init">
1084
            How the introduction of your project influences functionality
1085
            provided by previous version of the product?
1086
            <hint>
1087
            If you are planning to deprecate/remove/change any existing APIs,
1088
            list them here accompanied with the reason explaining why you
1089
            are doing so.
1090
            </hint>
1091
        </question>
1092
-->
1093
 <answer id="compat-deprecation">
1094
  <p>
1095
   XXX no answer for compat-deprecation
1096
  </p>
1097
 </answer>
1098
1099
1100
1101
<!--
1102
        <question id="resources-preferences" when="final">
1103
            Does your module uses preferences via Preferences API? Does your module use NbPreferences or
1104
            or regular JDK Preferences ? Does it read, write or both ? 
1105
            Does it share preferences with other modules ? If so, then why ?
1106
            <hint>
1107
                You may use
1108
                    &lt;api type="export" group="preferences"
1109
                    name="preference node name" category="private"&gt;
1110
                    description of individual keys, where it is used, what it
1111
                    influences, whether the module reads/write it, etc.
1112
                    &lt;/api&gt;
1113
                Due to XML ID restrictions, rather than /org/netbeans/modules/foo give the "name" as org.netbeans.modules.foo.
1114
                Note that if you use NbPreferences this name will then be the same as the code name base of the module.
1115
            </hint>
1116
        </question>
1117
-->
1118
 <answer id="resources-preferences">
1119
  <p>
1120
      The core module use NbPreferences for storring properties describe current settings
1121
      of Network Proxy.
1122
      <api group="preferences" name="org.netbeans.core" type="export" category="friend" url="">
1123
          <table>
1124
              <tbody>
1125
                  <tr>
1126
                      <th>key</th>
1127
                      <th>description</th>
1128
                      <th>read</th>
1129
                      <th>write</th>
1130
                  </tr>
1131
                  <tr>
1132
                      <td>proxyHttpHost</td>
1133
                      <td>Host name of HTTP Proxy</td>
1134
                      <td>Y</td>
1135
                      <td>Y</td>
1136
                  </tr>
1137
                  <tr>
1138
                      <td>proxyHttpPort</td>
1139
                      <td>Port of HTTP Proxy</td>
1140
                      <td>Y</td>
1141
                      <td>Y</td>
1142
                  </tr>
1143
                  <tr>
1144
                      <td>proxyHttpsHost</td>
1145
                      <td>Host name of HTTPS Proxy</td>
1146
                      <td>Y</td>
1147
                      <td>Y</td>
1148
                  </tr>
1149
                  <tr>
1150
                      <td>proxyHttpsPort</td>
1151
                      <td>Port of HTTPS Proxy</td>
1152
                      <td>Y</td>
1153
                      <td>Y</td>
1154
                  </tr>
1155
                  <tr>
1156
                      <td>proxySocksHost</td>
1157
                      <td>Host name of Socks server</td>
1158
                      <td>Y</td>
1159
                      <td>Y</td>
1160
                  </tr>
1161
                  <tr>
1162
                      <td>proxySocksPort</td>
1163
                      <td>Port of Socks server</td>
1164
                      <td>Y</td>
1165
                      <td>Y</td>
1166
                  </tr>
1167
                  <tr>
1168
                      <td>proxyNonProxyHosts</td>
1169
                      <td>Ignore host list</td>
1170
                      <td>Y</td>
1171
                      <td>Y</td>
1172
                  </tr>
1173
                  <tr>
1174
                      <td>proxyType</td>
1175
                      <td>Type of Proxy Setting (DIRECT_CONNECTION, AUTO_DETECT_PROXY, MANUAL_SET_PROXY</td>
1176
                      <td>Y</td>
1177
                      <td>Y</td>
1178
                  </tr>
1179
                  <tr>
1180
                      <td>useProxyAuthentication</td>
1181
                      <td>Proxy Server requires user authentication</td>
1182
                      <td>Y</td>
1183
                      <td>Y</td>
1184
                  </tr>
1185
                  <tr>
1186
                      <td>proxyAuthenticationUsername</td>
1187
                      <td>Username for authentication on Proxy Server</td>
1188
                      <td>Y</td>
1189
                      <td>Y</td>
1190
                  </tr>
1191
                  <tr>
1192
                      <td>proxyAuthenticationUsername</td>
1193
                      <td>Password for authentication on Proxy Server</td>
1194
                      <td>Y</td>
1195
                      <td>Y</td>
1196
                  </tr>
1197
              </tbody>
1198
          </table>
1199
      </api>
1200
  </p>
1201
  <p>
1202
      <i>Does it share preferences with other modules ?</i>
1203
      Yes, the Welcome Screen module listens for changes Proxy Settings and reload content when Proxy changes.
1204
  </p>
1073
 </answer>
1205
 </answer>
1074
1206
1075
</api-answers>
1207
</api-answers>

Return to bug 85270