Skip to content

Commit 01057e7

Browse files
committed
Fix docstring
1 parent f63cbbe commit 01057e7

15 files changed

Lines changed: 21 additions & 24 deletions

core/src/main/java/com/onelogin/saml2/settings/SettingsBuilder.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,6 @@ private void loadPropFile(String propFileName) throws IOException {
148148
/**
149149
* Builds the Saml2Settings object. Read the Properties object and set all the SAML settings
150150
*
151-
* @param spValidationOnly
152-
* indicates if the IdP settings should be checked or not
153-
*
154151
* @return the Saml2Settings object with all the SAML settings loaded
155152
*
156153
* @throws IOException

core/src/test/java/com/onelogin/saml2/test/settings/MetadataTest.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public class MetadataTest {
3434
*
3535
* @throws Exception
3636
*
37-
* @see Metadata
37+
* @see com.onelogin.saml2.settings.Metadata
3838
*/
3939
@Test
4040
public void testMetadata() throws Exception {
@@ -67,7 +67,7 @@ public void testMetadata() throws Exception {
6767
* @throws IOException
6868
* @throws CertificateEncodingException
6969
*
70-
* @see Metadata
70+
* @see com.onelogin.saml2.settings.Metadata
7171
*/
7272
@Test
7373
public void testMetadataExpiration() throws IOException, CertificateEncodingException {
@@ -98,7 +98,7 @@ public void testMetadataExpiration() throws IOException, CertificateEncodingExce
9898
* @throws IOException
9999
* @throws CertificateEncodingException
100100
*
101-
* @see Metadata.toContactsXml
101+
* @see com.onelogin.saml2.settings.Metadata#toContactsXml
102102
*/
103103
@Test
104104
public void testToContactsXml() throws IOException, CertificateEncodingException {
@@ -122,7 +122,7 @@ public void testToContactsXml() throws IOException, CertificateEncodingException
122122
* @throws IOException
123123
* @throws CertificateEncodingException
124124
*
125-
* @see Metadata.toOrganizationXml
125+
* @see com.onelogin.saml2.settings.Metadata#toOrganizationXml
126126
*/
127127
@Test
128128
public void testToOrganizationXml() throws IOException, CertificateEncodingException {
@@ -146,7 +146,7 @@ public void testToOrganizationXml() throws IOException, CertificateEncodingExcep
146146
* @throws IOException
147147
* @throws CertificateEncodingException
148148
*
149-
* @see Metadata.toSLSXml
149+
* @see com.onelogin.saml2.settings.Metadata#toSLSXml
150150
*/
151151
@Test
152152
public void testToSLSXml() throws IOException, CertificateEncodingException {
@@ -171,7 +171,7 @@ public void testToSLSXml() throws IOException, CertificateEncodingException {
171171
* @throws IOException
172172
* @throws CertificateEncodingException
173173
*
174-
* @see Metadata.toX509KeyDescriptorsXML
174+
* @see com.onelogin.saml2.settings.Metadata#toX509KeyDescriptorsXML
175175
*/
176176
@Test
177177
public void testToX509KeyDescriptorsXML() throws IOException, CertificateEncodingException {
@@ -199,7 +199,7 @@ public void testToX509KeyDescriptorsXML() throws IOException, CertificateEncodin
199199
* @throws IOException
200200
* @throws CertificateEncodingException
201201
*
202-
* @see Metadata.getAttributeConsumingServiceXml
202+
* @see com.onelogin.saml2.settings.Metadata#getAttributeConsumingServiceXml
203203
*/
204204
@Test
205205
public void testGetAttributeConsumingServiceXml() throws IOException, CertificateEncodingException {
@@ -241,7 +241,7 @@ public void testGetAttributeConsumingServiceXml() throws IOException, Certificat
241241
* @throws IOException
242242
* @throws CertificateEncodingException
243243
*
244-
* @see Metadata.getAttributeConsumingServiceXml
244+
* @see com.onelogin.saml2.settings.Metadata#getAttributeConsumingServiceXml
245245
*/
246246
@Test
247247
public void testGetAttributeConsumingServiceXmlWithMultipleAttributeValue() throws IOException, CertificateEncodingException {

core/src/test/resources/config/config.adfs.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# If 'strict' is True, then the PHP Toolkit will reject unsigned
1+
# If 'strict' is True, then the Java Toolkit will reject unsigned
22
# or unencrypted messages if it expects them signed or encrypted
33
# Also will reject the messages if not strictly follow the SAML
44
onelogin.saml2.strict = true

core/src/test/resources/config/config.all.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# If 'strict' is True, then the PHP Toolkit will reject unsigned
1+
# If 'strict' is True, then the Java Toolkit will reject unsigned
22
# or unencrypted messages if it expects them signed or encrypted
33
# Also will reject the messages if not strictly follow the SAML
44
onelogin.saml2.strict = true

core/src/test/resources/config/config.certfile.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# If 'strict' is True, then the PHP Toolkit will reject unsigned
1+
# If 'strict' is True, then the Java Toolkit will reject unsigned
22
# or unencrypted messages if it expects them signed or encrypted
33
# Also will reject the messages if not strictly follow the SAML
44
onelogin.saml2.strict = false

core/src/test/resources/config/config.certstring.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# If 'strict' is True, then the PHP Toolkit will reject unsigned
1+
# If 'strict' is True, then the Java Toolkit will reject unsigned
22
# or unencrypted messages if it expects them signed or encrypted
33
# Also will reject the messages if not strictly follow the SAML
44
onelogin.saml2.strict = false

core/src/test/resources/config/config.different.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# If 'strict' is True, then the PHP Toolkit will reject unsigned
1+
# If 'strict' is True, then the Java Toolkit will reject unsigned
22
# or unencrypted messages if it expects them signed or encrypted
33
# Also will reject the messages if not strictly follow the SAML
44
onelogin.saml2.strict = true

core/src/test/resources/config/config.invalidcontacts.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# If 'strict' is True, then the PHP Toolkit will reject unsigned
1+
# If 'strict' is True, then the Java Toolkit will reject unsigned
22
# or unencrypted messages if it expects them signed or encrypted
33
# Also will reject the messages if not strictly follow the SAML
44
onelogin.saml2.strict = false

core/src/test/resources/config/config.invalidspcertstring.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# If 'strict' is True, then the PHP Toolkit will reject unsigned
1+
# If 'strict' is True, then the Java Toolkit will reject unsigned
22
# or unencrypted messages if it expects them signed or encrypted
33
# Also will reject the messages if not strictly follow the SAML
44
onelogin.saml2.strict = false

core/src/test/resources/config/config.my.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# If 'strict' is True, then the PHP Toolkit will reject unsigned
1+
# If 'strict' is True, then the Java Toolkit will reject unsigned
22
# or unencrypted messages if it expects them signed or encrypted
33
# Also will reject the messages if not strictly follow the SAML
44
onelogin.saml2.strict = true

0 commit comments

Comments
 (0)