Skip to content

Commit 9770185

Browse files
Initial commit with package initiation and gradle
Signed-off-by: Soumik Sarker <ronodhirsoumik@gmail.com>
1 parent f94ef1b commit 9770185

13 files changed

Lines changed: 58 additions & 26 deletions

File tree

saml2/package-info.java

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/*
2+
* Copyright 2004-present the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
/**
17+
* Core Spring Security SAML 2.0 abstractions.
18+
*/
19+
@NullMarked
20+
package org.springframework.security.saml2;
21+
22+
import org.jspecify.annotations.NullMarked;

saml2/saml2-service-provider/spring-security-saml2-service-provider.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
plugins {
2-
id 'compile-warnings-error'
3-
id 'javadoc-warnings-error'
42
id 'security-nullability'
53
}
64

saml2/saml2-service-provider/src/main/java/org/springframework/security/saml2/core/package-info.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
1716
/**
18-
* Core SAML2 types and utilities.
17+
* Core Spring Security SAML 2.0 abstractions.
1918
*/
2019
@NullMarked
2120
package org.springframework.security.saml2.core;

saml2/saml2-service-provider/src/main/java/org/springframework/security/saml2/internal/package-info.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
1716
/**
18-
* Internal utilities for SAML2 support (not for public use).
17+
* Core Spring Security SAML 2.0 abstractions.
1918
*/
2019
@NullMarked
2120
package org.springframework.security.saml2.internal;

saml2/saml2-service-provider/src/main/java/org/springframework/security/saml2/provider/service/authentication/logout/package-info.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
1716
/**
18-
* Internal utilities for SAML2 support (not for public use).
17+
* Core Spring Security SAML 2.0 abstractions.
1918
*/
2019
@NullMarked
2120
package org.springframework.security.saml2.provider.service.authentication.logout;

saml2/saml2-service-provider/src/main/java/org/springframework/security/saml2/provider/service/authentication/package-info.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,10 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
1716
/**
18-
* Internal utilities for SAML2 support (not for public use).
17+
* Core Spring Security SAML 2.0 abstractions.
1918
*/
2019
@NullMarked
21-
package org.springframework.security.saml2.provider.service.authentication;
20+
package org.springframework.security.saml2.authentication;
2221

2322
import org.jspecify.annotations.NullMarked;

saml2/saml2-service-provider/src/main/java/org/springframework/security/saml2/provider/service/metadata/package-info.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
1716
/**
18-
* Internal utilities for SAML2 support (not for public use).
17+
* Core Spring Security SAML 2.0 abstractions.
1918
*/
2019
@NullMarked
2120
package org.springframework.security.saml2.provider.service.metadata;
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/*
2+
* Copyright 2004-present the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
/**
17+
* Core Spring Security SAML 2.0 abstractions.
18+
*/
19+
@NullMarked
20+
package org.springframework.security.saml2.provider.service;
21+
22+
import org.jspecify.annotations.NullMarked;

saml2/saml2-service-provider/src/main/java/org/springframework/security/saml2/provider/service/registration/package-info.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
1716
/**
18-
* Internal utilities for SAML2 support (not for public use).
17+
* Core Spring Security SAML 2.0 abstractions.
1918
*/
2019
@NullMarked
2120
package org.springframework.security.saml2.provider.service.registration;

saml2/saml2-service-provider/src/main/java/org/springframework/security/saml2/provider/service/web/authentication/logout/package-info.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,10 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
1716
/**
18-
* Internal utilities for SAML2 support (not for public use).
17+
* Core Spring Security SAML 2.0 abstractions.
1918
*/
2019
@NullMarked
21-
package org.springframework.security.saml2.provider.service.web.authentication.logout;
20+
package org.springframework.security.saml2.web.logout;
2221

2322
import org.jspecify.annotations.NullMarked;

0 commit comments

Comments
 (0)