1
1
/*
2
- * Copyright (c) 2005, 2021 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2005, 2022 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -111,9 +111,9 @@ public SSLParameters() {
111
111
* {@code setCipherSuites(cipherSuites);}. Note that the
112
112
* standard list of cipher suite names may be found in the <a href=
113
113
* "{@docRoot}/../specs/security/standard-names.html#jsse-cipher-suite-names">
114
- * JSSE Cipher Suite Names</a> section of the Java Cryptography
115
- * Architecture Standard Algorithm Name Documentation . Providers
116
- * may support cipher suite names not found in this list.
114
+ * JSSE Cipher Suite Names</a> section of the Java Security Standard
115
+ * Algorithm Names Specification . Providers may support cipher suite
116
+ * names not found in this list.
117
117
*
118
118
* @param cipherSuites the array of ciphersuites (or null)
119
119
*/
@@ -131,9 +131,9 @@ public SSLParameters(String[] cipherSuites) {
131
131
* Note that the standard list of cipher suite names may be found in the
132
132
* <a href=
133
133
* "{@docRoot}/../specs/security/standard-names.html#jsse-cipher-suite-names">
134
- * JSSE Cipher Suite Names</a> section of the Java Cryptography
135
- * Architecture Standard Algorithm Name Documentation . Providers
136
- * may support cipher suite names not found in this list.
134
+ * JSSE Cipher Suite Names</a> section of the Java Security Standard
135
+ * Algorithm Names Specification . Providers may support cipher suite
136
+ * names not found in this list.
137
137
*
138
138
* @param cipherSuites the array of ciphersuites (or null)
139
139
* @param protocols the array of protocols (or null)
@@ -154,9 +154,9 @@ private static String[] clone(String[] s) {
154
154
* The returned array includes cipher suites from the list of standard
155
155
* cipher suite names in the <a href=
156
156
* "{@docRoot}/../specs/security/standard-names.html#jsse-cipher-suite-names">
157
- * JSSE Cipher Suite Names</a> section of the Java Cryptography
158
- * Architecture Standard Algorithm Name Documentation , and may also
159
- * include other cipher suites that the provider supports.
157
+ * JSSE Cipher Suite Names</a> section of the Java Security Standard
158
+ * Algorithm Names Specification , and may also include other cipher suites
159
+ * that the provider supports.
160
160
*
161
161
* @return a copy of the array of ciphersuites or null if none
162
162
* have been set.
@@ -171,10 +171,10 @@ public String[] getCipherSuites() {
171
171
* @param cipherSuites the array of ciphersuites (or null). Note that the
172
172
* standard list of cipher suite names may be found in the <a href=
173
173
* "{@docRoot}/../specs/security/standard-names.html#jsse-cipher-suite-names">
174
- * JSSE Cipher Suite Names</a> section of the Java Cryptography
175
- * Architecture Standard Algorithm Name Documentation . Providers
176
- * may support cipher suite names not found in this list or might not
177
- * use the recommended name for a certain cipher suite.
174
+ * JSSE Cipher Suite Names</a> section of the Java Security Standard
175
+ * Algorithm Names Specification . Providers may support cipher suite
176
+ * names not found in this list or might not use the recommended name
177
+ * for a certain cipher suite.
178
178
*/
179
179
public void setCipherSuites (String [] cipherSuites ) {
180
180
this .cipherSuites = clone (cipherSuites );
0 commit comments