22 changed files with 147 additions and 34 deletions
@ -0,0 +1,26 @@ |
|||||||
|
/* |
||||||
|
* Copyright 2002-2020 the original author or authors. |
||||||
|
* |
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
|
* you may not use this file except in compliance with the License. |
||||||
|
* You may obtain a copy of the License at |
||||||
|
* |
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0 |
||||||
|
* |
||||||
|
* Unless required by applicable law or agreed to in writing, software |
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
* See the License for the specific language governing permissions and |
||||||
|
* limitations under the License. |
||||||
|
*/ |
||||||
|
|
||||||
|
package org.springframework.security.config.web.servlet.headers |
||||||
|
|
||||||
|
/** |
||||||
|
* Marker annotation indicating that the annotated class is part of the headers security DSL. |
||||||
|
* |
||||||
|
* @author Eleftheria Stein |
||||||
|
* @since 5.4 |
||||||
|
*/ |
||||||
|
@DslMarker |
||||||
|
annotation class HeadersSecurityMarker |
||||||
@ -0,0 +1,26 @@ |
|||||||
|
/* |
||||||
|
* Copyright 2002-2020 the original author or authors. |
||||||
|
* |
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
|
* you may not use this file except in compliance with the License. |
||||||
|
* You may obtain a copy of the License at |
||||||
|
* |
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0 |
||||||
|
* |
||||||
|
* Unless required by applicable law or agreed to in writing, software |
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
* See the License for the specific language governing permissions and |
||||||
|
* limitations under the License. |
||||||
|
*/ |
||||||
|
|
||||||
|
package org.springframework.security.config.web.servlet.oauth2.client |
||||||
|
|
||||||
|
/** |
||||||
|
* Marker annotation indicating that the annotated class is part of the OAuth 2.0 client security DSL. |
||||||
|
* |
||||||
|
* @author Eleftheria Stein |
||||||
|
* @since 5.4 |
||||||
|
*/ |
||||||
|
@DslMarker |
||||||
|
annotation class OAuth2ClientSecurityMarker |
||||||
@ -0,0 +1,26 @@ |
|||||||
|
/* |
||||||
|
* Copyright 2002-2020 the original author or authors. |
||||||
|
* |
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
|
* you may not use this file except in compliance with the License. |
||||||
|
* You may obtain a copy of the License at |
||||||
|
* |
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0 |
||||||
|
* |
||||||
|
* Unless required by applicable law or agreed to in writing, software |
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
* See the License for the specific language governing permissions and |
||||||
|
* limitations under the License. |
||||||
|
*/ |
||||||
|
|
||||||
|
package org.springframework.security.config.web.servlet.oauth2.login |
||||||
|
|
||||||
|
/** |
||||||
|
* Marker annotation indicating that the annotated class is part of the OAuth 2.0 login security DSL. |
||||||
|
* |
||||||
|
* @author Eleftheria Stein |
||||||
|
* @since 5.4 |
||||||
|
*/ |
||||||
|
@DslMarker |
||||||
|
annotation class OAuth2LoginSecurityMarker |
||||||
@ -0,0 +1,26 @@ |
|||||||
|
/* |
||||||
|
* Copyright 2002-2020 the original author or authors. |
||||||
|
* |
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
|
* you may not use this file except in compliance with the License. |
||||||
|
* You may obtain a copy of the License at |
||||||
|
* |
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0 |
||||||
|
* |
||||||
|
* Unless required by applicable law or agreed to in writing, software |
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
* See the License for the specific language governing permissions and |
||||||
|
* limitations under the License. |
||||||
|
*/ |
||||||
|
|
||||||
|
package org.springframework.security.config.web.servlet.oauth2.resourceserver |
||||||
|
|
||||||
|
/** |
||||||
|
* Marker annotation indicating that the annotated class is part of the OAuth 2.0 resource server security DSL. |
||||||
|
* |
||||||
|
* @author Eleftheria Stein |
||||||
|
* @since 5.4 |
||||||
|
*/ |
||||||
|
@DslMarker |
||||||
|
annotation class OAuth2ResourceServerSecurityMarker |
||||||
@ -0,0 +1,26 @@ |
|||||||
|
/* |
||||||
|
* Copyright 2002-2020 the original author or authors. |
||||||
|
* |
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
|
* you may not use this file except in compliance with the License. |
||||||
|
* You may obtain a copy of the License at |
||||||
|
* |
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0 |
||||||
|
* |
||||||
|
* Unless required by applicable law or agreed to in writing, software |
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
* See the License for the specific language governing permissions and |
||||||
|
* limitations under the License. |
||||||
|
*/ |
||||||
|
|
||||||
|
package org.springframework.security.config.web.servlet.session |
||||||
|
|
||||||
|
/** |
||||||
|
* Marker annotation indicating that the annotated class is part of the session security DSL. |
||||||
|
* |
||||||
|
* @author Eleftheria Stein |
||||||
|
* @since 5.4 |
||||||
|
*/ |
||||||
|
@DslMarker |
||||||
|
annotation class SessionSecurityMarker |
||||||
Loading…
Reference in new issue